summary refs log tree commit diff
path: root/modules/software-templates/steam.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/software-templates/steam.nix')
-rw-r--r--modules/software-templates/steam.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/software-templates/steam.nix b/modules/software-templates/steam.nix
new file mode 100644

index 0000000..2054b7d --- /dev/null +++ b/modules/software-templates/steam.nix
@@ -0,0 +1,16 @@ +{ pkgs, ... }: +{ + programs.steam = { + enable = true; + gamescopeSession.enable = true; + extraCompatPackages = with pkgs; [ + steam-play-none + proton-ge-bin + ]; + }; + + environment.systemPackages = with pkgs; [ + steam-run + steam-acf + ]; +}