1
0
Fork 0

Compare commits

..

No commits in common. "bced970b5d1ecd225d03a02fd63f40fffe0564ab" and "b0682b23d5117b40ee9fd2cb5ba8339754784d30" have entirely different histories.

3 changed files with 1 additions and 27 deletions

View file

@ -19,7 +19,6 @@ with lib.${namespace};
apps = { apps = {
librewolf = enabled; librewolf = enabled;
libreoffice = enabled;
thunderbird = enabled; thunderbird = enabled;
chatterino = enabled; chatterino = enabled;
mpv = enabled; mpv = enabled;

View file

@ -1,22 +0,0 @@
{
config,
lib,
pkgs,
namespace,
...
}:
with lib;
with lib.${namespace};
let
cfg = config.${namespace}.apps.libreoffice;
in
{
options.${namespace}.apps.libreoffice = with types; {
enable = mkBoolOpt false "Whether or not to enable libreoffice.";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ libreoffice ];
};
}

View file

@ -16,9 +16,6 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = [ pkgs.runelite ];
runelite
bolt-launcher
];
}; };
} }