mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
15 lines
216 B
Nix
15 lines
216 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "JetBrainsMono Nerd Font";
|
|
size = 16;
|
|
};
|
|
theme = "Catppuccin-Mocha";
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
};
|
|
};
|
|
}
|