kitty.nix
1 { config, lib, pkgs, ... }: 2 let fishShell = "${pkgs.fish}/bin/fish"; 3 in 4 { 5 programs.kitty = { 6 enable = true; 7 extraConfig = '' 8 include everforest.conf 9 shell ${fishShell} 10 ''; 11 font = { 12 package = pkgs.nerd-fonts.departure-mono; 13 name = "DepartureMono Nerd Font Mono"; 14 size = 13; 15 }; 16 }; 17 home.file.".config/kitty/everforest.conf" = { 18 source = ./everforest.conf; 19 }; 20 } 21 22