changed stuff

This commit is contained in:
Victor Ișan 2026-02-04 00:29:46 +01:00
parent dc810fb287
commit 17c0664cb2
4 changed files with 21 additions and 2 deletions

View File

@ -41,6 +41,14 @@
settings.PasswordAuthentication = false;
};
fileSystems."/games" = {
device = "/dev/disk/by-uuid/90bea801-2b8a-40db-8862-ccc55f2b2262";
fsType = "ext4";
options = [
"nofail" # Prevent system from failing if this drive doesn't mount
];
};
system.stateVersion = release;
}

View File

@ -25,6 +25,8 @@ in
tmux
killall
neovim
pciutils
progress
];
nixpkgs.config.allowUnfreePredicate =

View File

@ -15,16 +15,22 @@
sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
avahi = {
enable = true;
publish.enable = true;
publish.userServices = true;
};
};
systemd.user.services.sunshine.enable = true;
programs.steam = {
enable = true;
};
environment.systemPackages = with pkgs; [
ffmpeg
zeroad
];
}

View File

@ -2,7 +2,10 @@
{
services = {
xserver.enable = true;
xserver = {
enable = true;
xkb.options = "caps:escape";
};
desktopManager.plasma6.enable = true;
displayManager.defaultSession = "plasmax11";
displayManager.sddm = {