1
0
forked from extern/nix-config
donovanglover-nix-config/containers/iamb.nix
Donovan Glover dd6f43e02d
containers: Add iamb
iamb is a TUI matrix client written in Rust.
2023-06-23 10:40:00 -04:00

41 lines
797 B
Nix

{ stylix, home-manager, ... }:
{
containers.iamb = {
privateNetwork = true;
ephemeral = true;
hostAddress = "192.168.100.70";
localAddress = "192.168.100.71";
bindMounts = {
"/home/user" = {
hostPath = "/home/user/containers/iamb";
isReadOnly = false;
};
waylandDisplay = rec {
hostPath = "/run/user/1000";
mountPoint = hostPath;
};
x11Display = rec {
hostPath = "/tmp/.X11-unix";
mountPoint = hostPath;
isReadOnly = true;
};
};
config = { pkgs, ... }: {
imports = [
stylix.nixosModules.stylix
home-manager.nixosModules.home-manager
../setup.nix
];
environment.systemPackages = with pkgs; [
iamb
];
};
};
}