nixos-config/modules/home/apps/cli-apps/kitty/default.nix
2024-03-26 22:36:22 +01:00

21 lines
287 B
Nix

{
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
];
};
}