diff options
Diffstat (limited to 'modules/programs')
-rw-r--r-- | modules/programs/steam.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/programs/steam.nix b/modules/programs/steam.nix new file mode 100644 index 0000000..d4bad7a --- /dev/null +++ b/modules/programs/steam.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + steam + ]; + hardware.opengl.driSupport32Bit = true; + hardware.pulseaudio.support32Bit = true; +} |