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; 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; system.stateVersion = release;
} }

View File

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

View File

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

View File

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