aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/home/apps/default.nix9
-rw-r--r--modules/home/suites/gaming/default.nix1
2 files changed, 10 insertions, 0 deletions
diff --git a/modules/home/apps/default.nix b/modules/home/apps/default.nix
index 9dfe193..f7f1633 100644
--- a/modules/home/apps/default.nix
+++ b/modules/home/apps/default.nix
@@ -4,7 +4,16 @@ with lib; with lib.${namespace}; {
imports = with pkgs; [
(mkSimpleApp "gimp" { packages = [ gimp3 ]; })
(mkSimpleApp "jellyfin" { packages = [ jellyfin-media-player ]; })
+
(mkSimpleApp "lutris" { persist = [ ".local/share/lutris" ]; })
+ (mkSimpleApp "hytale" {
+ packages = [ hytale-launcher ];
+ persist = [
+ ".local/share/hytale-launcher"
+ ".local/share/Hytale"
+ ];
+ })
+
(mkSimpleApp "irssi" { persist = [ ".irssi" ]; })
(mkSimpleApp "intellij" {
diff --git a/modules/home/suites/gaming/default.nix b/modules/home/suites/gaming/default.nix
index 13e98ec..656aaef 100644
--- a/modules/home/suites/gaming/default.nix
+++ b/modules/home/suites/gaming/default.nix
@@ -14,6 +14,7 @@ in {
steam.enable = true;
prismlauncher.enable = true;
lutris.enable = true;
+ hytale.enable = true;
};
};
};