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-11-21 11:59:13 -08:00
|
|
|
theme = "Dracula";
|
2023-11-21 11:40:26 -08:00
|
|
|
font.name = "JetBrainsMono Nerd Font";
|
|
|
|
shellIntegration.mode = "no-cursor";
|
|
|
|
settings = {
|
|
|
|
disable_ligatures = "never";
|
|
|
|
cursor_shape = "block";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|