flakes/modules/user/kitty.nix

21 lines
616 B
Nix
Raw Normal View History

2021-07-05 15:05:01 +07:00
{ config, pkgs, ... }: {
programs.kitty = {
enable = true;
font = {
package = pkgs.cascadia-code;
name = "Cascadia Code PL";
size = 13;
};
settings = {
font_features = "-ss01 +ss19";
enable_audio_bell = false;
2025-01-24 12:57:53 +11:00
color5 = "#cba6f7";
color13 = "#cba6f7";
2021-07-05 15:05:01 +07:00
};
2025-01-24 12:57:53 +11:00
# extraConfig = builtins.readFile (builtins.fetchurl {
# url = "https://raw.githubusercontent.com/folke/tokyonight.nvim/eede574f9ef57137e6d7e4bab37b09db636c5a56/extras/kitty_tokyonight_night.conf";
# sha256 = "0l9yl3qmgf7b10x7hy7q5hma0hsyamq3n14lfbw31cimm6snwim6";
# });
2021-07-05 15:05:01 +07:00
};
}