summaryrefslogtreecommitdiff
path: root/modules/nixos/steam.nix
diff options
context:
space:
mode:
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
+ ];
}