This commit is contained in:
smayzy
2025-08-02 15:20:59 +02:00
parent 6c094967e3
commit 1f6904cbc9
6 changed files with 29 additions and 23 deletions
+1
View File
@@ -2,5 +2,6 @@
{
imports = [
./alacritty.nix
./kitty.nix
];
}
+20
View File
@@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.kitty.enable = mkOption {
type = types.bool;
default = false;
description = "kitty";
};
config = mkIf config.smayzy.kitty.enable {
environment.systemPackages = with pkgs; [ kitty ];
};
}