nixos-config/home/shell/terminal.nix

15 lines
239 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "Fira Code";
package = pkgs.fira-code;
};
extraConfig = ''
${with builtins; readFile ./kitty-gruvbox-dark.conf}
'';
};
}