1
0
forked from extern/nix-config
donovanglover-nix-config/containers/srb2.nix

59 lines
1.1 KiB
Nix
Raw Normal View History

2023-06-22 18:37:32 +02:00
{ home-manager, stylix, ... }:
2023-06-22 18:28:27 +02:00
{
containers.srb2 = {
privateNetwork = true;
ephemeral = true;
2023-07-15 23:03:48 +02:00
hostAddress = "192.168.100.10";
localAddress = "192.168.100.11";
bindMounts = {
"/home/user/.srb2" = {
hostPath = "/home/user/containers/srb2";
isReadOnly = false;
};
waylandDisplay = rec {
hostPath = "/run/user/1000";
mountPoint = hostPath;
};
x11Display = rec {
hostPath = "/tmp/.X11-unix";
mountPoint = hostPath;
};
dri = rec {
hostPath = "/dev/dri";
mountPoint = hostPath;
};
};
allowedDevices = [
{
modifier = "rw";
node = "/dev/dri/renderD128";
}
];
2023-06-13 15:06:39 +02:00
config = { pkgs, ... }: {
imports = [
2023-06-22 18:37:32 +02:00
home-manager.nixosModules.home-manager
stylix.nixosModules.stylix
2023-06-22 18:28:27 +02:00
../setup.nix
];
2023-07-15 23:03:48 +02:00
networking.nat.forwardPorts = [
{
destination = "192.168.100.11:5029";
sourcePort = 5029;
}
];
environment.systemPackages = with pkgs; [
srb2
];
};
};
}