nix-dotfiles/programs/kitty/default.nix
JuliaLange c97d94408e Add kitty, obs, and scripts skeleton code
Also refactors some flake.nix code to not use dictionaries
2024-04-18 02:37:51 -07:00

12 lines
188 B
Nix

{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
settings = {
font_family = "Cascadia Code";
font_size = 18;
enable_audio_bell = "no";
};
};
}