mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
23 lines
442 B
Nix
23 lines
442 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
include themes/draculaplus.conf
|
|
editor "${config.programs.emacs.finalPackage.out}/bin/emacsclient" -c
|
|
'';
|
|
shellIntegration.enableZshIntegration = true;
|
|
|
|
font = {
|
|
package = pkgs.meslo-lgs-nf;
|
|
name = "MesloLGS NF Regular";
|
|
size = 12;
|
|
};
|
|
};
|
|
|
|
home.file.".config/kitty/themes".source = ./themes;
|
|
}
|