From 757f60070fc96bfebb18d0ec7af45c7b40d633e1 Mon Sep 17 00:00:00 2001 From: Toast Date: Thu, 29 Jun 2023 18:42:24 +0200 Subject: [PATCH] Gaming: enable steam --- roles/gaming/default.nix | 1 + roles/gaming/steam.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 roles/gaming/steam.nix 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; + }; +}