17 lines
273 B
Nix
17 lines
273 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
home-manager.users.grape.programs.kitty = {
|
||
|
|
||
|
enable = true;
|
||
|
font.name = "Jetbrains Mono Nerd font";
|
||
|
|
||
|
extraConfig = ''
|
||
|
enable_audio_bell no
|
||
|
window_alert_on_bell no
|
||
|
foreground #dddddd
|
||
|
background #191830
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
}
|