feat: add umu-launcher on andromedae

This commit is contained in:
Dmitriy Kholkin 2025-08-21 04:33:13 +03:00
parent 9e641c97bf
commit f00ecb7c9b
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 21 additions and 0 deletions

View File

@ -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;

View File

@ -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" ];
};
}