feat(nixos): add terraria and gamemode services and update configurations

This commit is contained in:
uttarayan21
2025-11-02 22:14:34 +05:30
parent bf5077a437
commit 0f77e228b0
15 changed files with 143 additions and 52 deletions

View File

@@ -8,5 +8,6 @@
./obs-studio.nix
./gnome-disks.nix
./nix-ld.nix
./gamemode.nix
];
}

View File

@@ -0,0 +1,5 @@
{...}: {
programs.gamemode = {
enable = true;
};
}

View File

@@ -4,10 +4,17 @@
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
extraCompatPackages = [
pkgs.proton-ge-bin
pkgs.gamescope
pkgs.mangohud
];
};
programs.gamescope = {
enable = true;
capSysNice = true;
};
environment.systemPackages = [
pkgs.protonup-qt
];