feat(gaming): add steam

This commit is contained in:
tux
2026-05-10 02:26:20 +05:30
parent c0182fbdf8
commit d15933bf05
2 changed files with 11 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
hardware hardware
networking networking
desktop desktop
gaming
virtualisation virtualisation
]; ];
@@ -25,6 +26,7 @@
home = { home = {
directories = [ directories = [
".steam"
".cache/awww" ".cache/awww"
".config/BraveSoftware" ".config/BraveSoftware"
".config/zed" ".config/zed"
@@ -34,6 +36,7 @@
".config/obs-studio" ".config/obs-studio"
".config/easyeffects" ".config/easyeffects"
".config/DankMaterialShell" ".config/DankMaterialShell"
".local/share/Steam"
".local/share/nvim" ".local/share/nvim"
".local/share/opencode" ".local/share/opencode"
".local/share/zsh" ".local/share/zsh"

View File

@@ -0,0 +1,8 @@
{
flake.modules.nixos.gaming = {
programs.steam = {
enable = true;
protontricks.enable = true;
};
};
}