19 lines
455 B
Nix
Raw Normal View History

2023-11-21 11:40:26 -08:00
{ config, lib, pkgs, user, ... }:
2023-11-21 11:42:10 -08:00
let cfg = config.modules.desktop.kitty;
2023-11-21 11:40:26 -08:00
in {
2023-11-21 11:42:10 -08:00
options.modules.desktop.kitty.enable = lib.mkEnableOption "kitty";
2023-11-21 11:40:26 -08:00
config = lib.mkIf cfg.enable {
programs.kitty = {
enable = true;
2023-12-14 00:24:59 -08:00
theme = "Gruvbox Dark";
2023-11-21 11:40:26 -08:00
font.name = "JetBrainsMono Nerd Font";
shellIntegration.mode = "no-cursor";
settings = {
disable_ligatures = "never";
cursor_shape = "block";
};
};
};
}