nixos-config/config/apps/kitty.nix

23 lines
589 B
Nix
Raw Permalink Normal View History

2024-07-29 00:00:59 +00:00
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
# TODO figure out how to get atau-nixpkgs working from the flake with different systems
# background_image ${atau-nixpkgs.atau-wallpapers}/share/backgrounds/atau-wallpapers/aos1.png
extraConfig = ''
background_tint 0.2
background_image_layout centered
modify_font cell_width 110%
window_border_width 1
window_margin_width 10
window_padding_width 2
'';
theme = "Rosé Pine Dawn";
font.package = pkgs.victor-mono;
font.name = "Victor Mono";
font.size = 12;
};
}