update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:36:22 +01:00
parent 2697a0ef48
commit 082492da6a
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
];
};
}