mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-23 02:05:45 +07:00
22 lines
411 B
Nix
22 lines
411 B
Nix
{
|
|
flake.nixosModules.kitty = {
|
|
home-manager.users.matthew.imports = [
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "JetBrainsMonoNerdFontMono";
|
|
size = 13;
|
|
};
|
|
settings = {
|
|
confirm_os_window_close = 0;
|
|
};
|
|
extraConfig = ''
|
|
include ~/.cache/wal/colors-kitty.conf
|
|
'';
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|