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