update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:36:22 +01:00
parent 7f1fee2006
commit e8b6840c70
3 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
with lib;
with lib.wyrdgard; let
cfg = config.wyrdgard.apps.cli-apps.kitty;
in {
options.wyrdgard.cli-apps.kitty = {
enable = mkEnableOption "Kity";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
kitty
];
};
}