summaryrefslogtreecommitdiff
path: root/modules/nixos/steam.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2025-04-08 23:29:11 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2025-04-08 23:29:11 -0600
commit86efd0339e9914469fc4cb111686ba00d54e3ca0 (patch)
tree0c45fc1c649b419a31aee645af76d285d114ccbc /modules/nixos/steam.nix
parente4db356d39548748e0e3bd8dda25a807bf708e63 (diff)
cleaning up steam code
Diffstat (limited to 'modules/nixos/steam.nix')
-rw-r--r--modules/nixos/steam.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/nixos/steam.nix b/modules/nixos/steam.nix
index aeb25a0..8a98738 100644
--- a/modules/nixos/steam.nix
+++ b/modules/nixos/steam.nix
@@ -1,7 +1,11 @@
-{ config, ... }: {
+{ config, pkgs, ... }: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
+ hardware.steam-hardware.enable = true;
+ environment.systemPackages = with pkgs; [
+ sc-controller
+ ];
}