From d15933bf05a2a91f8bae2235fbfb04497523e055 Mon Sep 17 00:00:00 2001 From: tux Date: Sun, 10 May 2026 02:26:20 +0530 Subject: [PATCH] feat(gaming): add steam --- modules/hosts/sirius/config.nix | 3 +++ modules/nixos/gaming/steam.nix | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/nixos/gaming/steam.nix diff --git a/modules/hosts/sirius/config.nix b/modules/hosts/sirius/config.nix index 0a59393..cf5e751 100644 --- a/modules/hosts/sirius/config.nix +++ b/modules/hosts/sirius/config.nix @@ -13,6 +13,7 @@ hardware networking desktop + gaming virtualisation ]; @@ -25,6 +26,7 @@ home = { directories = [ + ".steam" ".cache/awww" ".config/BraveSoftware" ".config/zed" @@ -34,6 +36,7 @@ ".config/obs-studio" ".config/easyeffects" ".config/DankMaterialShell" + ".local/share/Steam" ".local/share/nvim" ".local/share/opencode" ".local/share/zsh" diff --git a/modules/nixos/gaming/steam.nix b/modules/nixos/gaming/steam.nix new file mode 100644 index 0000000..6ad062a --- /dev/null +++ b/modules/nixos/gaming/steam.nix @@ -0,0 +1,8 @@ +{ + flake.modules.nixos.gaming = { + programs.steam = { + enable = true; + protontricks.enable = true; + }; + }; +}