You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
224 B
14 lines
224 B
2 years ago
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.kitty = {
|
||
|
enable = true;
|
||
|
theme = "Nord";
|
||
|
font = {
|
||
|
name = "Monospace Regular";
|
||
|
size = 12;
|
||
|
};
|
||
|
extraConfig = "enable_auto_bell 0\nconfirm_os_window_close 0";
|
||
|
};
|
||
|
}
|