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