mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
19 lines
455 B
Nix
19 lines
455 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
let cfg = config.modules.desktop.kitty;
|
|
in {
|
|
options.modules.desktop.kitty.enable = lib.mkEnableOption "kitty";
|
|
config = lib.mkIf cfg.enable {
|
|
programs.kitty = {
|
|
enable = true;
|
|
theme = "Gruvbox Dark";
|
|
font.name = "JetBrainsMono Nerd Font";
|
|
shellIntegration.mode = "no-cursor";
|
|
settings = {
|
|
disable_ligatures = "never";
|
|
cursor_shape = "block";
|
|
};
|
|
};
|
|
};
|
|
}
|