diff --git a/hosts/andromedae/default.nix b/hosts/andromedae/default.nix index aa2b7ec..04c8ddb 100644 --- a/hosts/andromedae/default.nix +++ b/hosts/andromedae/default.nix @@ -69,6 +69,7 @@ in ataraxia.defaults.role = "desktop"; ataraxia.programs.lutris.enable = true; ataraxia.programs.mangohud.enable = true; + ataraxia.programs.umu-launcher.enable = true; ataraxia.services.modprobed-db.enable = true; ataraxia.theme.catppuccin.enable = true; diff --git a/modules/home/applications/games/umu-launcher.nix b/modules/home/applications/games/umu-launcher.nix new file mode 100644 index 0000000..af13e3f --- /dev/null +++ b/modules/home/applications/games/umu-launcher.nix @@ -0,0 +1,20 @@ +{ + config, + lib, + pkgs, + ... +}: +let + inherit (lib) mkEnableOption mkIf; + cfg = config.ataraxia.programs.umu-launcher; +in +{ + options.ataraxia.programs.umu-launcher = { + enable = mkEnableOption "Enable umu-launcher program"; + }; + + config = mkIf cfg.enable { + home.packages = with pkgs; [ umu-launcher ]; + persist.state.directories = [ ".local/share/umu" ]; + }; +}