move config to better places

This commit is contained in:
Vinzenz Schroeter 2023-09-24 13:04:45 +02:00
parent ddb7df4a4e
commit 9b60bc1988
4 changed files with 53 additions and 51 deletions

View file

@ -17,7 +17,6 @@ in {
wineWowPackages.stagingFull
wineWowPackages.fonts
winetricks
steam
(lutris.override {
extraPkgs = pkgs: [
@ -28,5 +27,13 @@ in {
];
})
];
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
};
};
};
}