{ containers.srb2 = { privateNetwork = true; ephemeral = true; 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; isReadOnly = true; }; dri = rec { hostPath = "/dev/dri"; mountPoint = hostPath; }; }; allowedDevices = [ { modifier = "rw"; node = "/dev/dri/renderD128"; } ]; config = { pkgs, ... }: { imports = [ ../setup.nix ]; environment.systemPackages = with pkgs; [ srb2 ]; }; }; }