Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
15 lines
287 B
Nix
15 lines
287 B
Nix
{
|
|
flake.modules.homeManager.kitty = {
|
|
programs.kitty = {
|
|
enable = true;
|
|
enableGitIntegration = true;
|
|
font = {
|
|
name = "JetBrains Mono";
|
|
size = 10;
|
|
};
|
|
shellIntegration.enableZshIntegration = true;
|
|
#TODO: kitty config
|
|
};
|
|
};
|
|
}
|