diff options
Diffstat (limited to 'snowfall/modules')
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 3 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/gaming/default.nix | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix index 6a75f4f..b455ef1 100644 --- a/snowfall/modules/home/apps/default.nix +++ b/snowfall/modules/home/apps/default.nix @@ -24,5 +24,8 @@ with lib; with lib.${namespace}; { (mkSimpleApp "jellyfin" { packages = [ jellyfin-media-player ]; }) + (mkSimpleApp "lutris" { + persist = [ ".local/share/lutris" ]; + }) ]; } diff --git a/snowfall/modules/home/suites/gaming/default.nix b/snowfall/modules/home/suites/gaming/default.nix index b16b0e9..f72af27 100644 --- a/snowfall/modules/home/suites/gaming/default.nix +++ b/snowfall/modules/home/suites/gaming/default.nix @@ -12,6 +12,7 @@ in { apps = { steam.enable = true; prismlauncher.enable = true; + lutris.enable = true; }; }; }; |