switching back to nixpackages for now, try to setup proton ge

This commit is contained in:
Christoph Hollizeck 2024-05-17 22:26:15 +02:00
parent 4a4c55b6e5
commit 5dd9aaa958
No known key found for this signature in database
5 changed files with 47 additions and 38 deletions

View file

@ -16,9 +16,16 @@ in
};
config = mkIf cfg.enable {
programs.steam.enable = true;
programs.steam.remotePlay.openFirewall = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
environment.systemPackages = with pkgs; [ steam ];
environment.systemPackages = with pkgs; [
steam
protontricks
];
};
}