xps16/steam: init
Evaluate machine configurations / eval (xps16) (push) Successful in 2m37s
Evaluate machine configurations / eval (tsuki) (push) Successful in 3m11s
Evaluate machine configurations / eval (kasei) (push) Successful in 4m25s

This commit is contained in:
2026-06-21 00:32:20 +09:00
parent df7b2f64bd
commit e59e743ff3
2 changed files with 21 additions and 0 deletions
+2
View File
@@ -7,6 +7,8 @@
./ipu6.nix
./disks.nix
./programs/steam.nix
./services/btrfs.nix
./services/docker.nix
./services/fprintd.nix
+19
View File
@@ -0,0 +1,19 @@
{ ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
protontricks.enable = true;
# gamescopeSession.enable = true;
};
# programs.gamescope = {
# enable = true;
# capSysNice = true;
# };
programs.appimage.enable = true;
programs.appimage.binfmt = true;
}