diff --git a/roles/gaming/default.nix b/roles/gaming/default.nix index f3991a4..3a963cc 100755 --- a/roles/gaming/default.nix +++ b/roles/gaming/default.nix @@ -2,5 +2,6 @@ { imports = [ + ./steam.nix ]; } diff --git a/roles/gaming/steam.nix b/roles/gaming/steam.nix new file mode 100644 index 0000000..178dc44 --- /dev/null +++ b/roles/gaming/steam.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + programs.steam = { + enable = true; + # Doubt that I'll use it, but I'll enable it anyways + remotePlay.openFirewall = true; + }; +}