feat: modularize (and extend) kitty config

This commit is contained in:
2026-01-19 09:45:07 +01:00
parent d6459d0d84
commit 92389f7048
5 changed files with 13 additions and 1 deletions

10
home/modules/kitty.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
config = {
home.packages = [ pkgs.kitty ];
programs.bash.shellAliases = {
icat = "kitty +kitten icat";
};
};
}