initial commit

This commit is contained in:
2026-04-19 14:58:51 -03:00
parent 3ac4eb5503
commit 5f85583bd0
32 changed files with 2222 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
config,
lib,
...
}:
{
options.mods.kitty = {
enable = lib.mkEnableOption "kitty";
};
config = lib.mkIf config.mods.kitty.enable {
programs.kitty = {
enable = true;
extraConfig = ''
include ${config.mods.flakePath}/mods/home/kitty/kitty.conf
'';
settings.clear_all_shortcuts = "yes";
};
};
}