1
0
forked from extern/nix-config
donovanglover-nix-config/containers/iamb.nix
Donovan Glover 410e5f50bb
containers: Simplify
isReadOnly is true by default.
2023-07-07 05:26:52 -04:00

40 lines
770 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;
};
};
config = { pkgs, ... }: {
imports = [
stylix.nixosModules.stylix
home-manager.nixosModules.home-manager
../setup.nix
];
environment.systemPackages = with pkgs; [
iamb
];
};
};
}