diff options
Diffstat (limited to 'home-manager/modules/aesthetics/targets/kitty.nix')
| -rw-r--r-- | home-manager/modules/aesthetics/targets/kitty.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/home-manager/modules/aesthetics/targets/kitty.nix b/home-manager/modules/aesthetics/targets/kitty.nix index 627eda5..834e652 100644 --- a/home-manager/modules/aesthetics/targets/kitty.nix +++ b/home-manager/modules/aesthetics/targets/kitty.nix @@ -2,16 +2,18 @@ cfg = config.aesthetics.targets.kitty; aes = config.aesthetics; in { - options.aesthetics.targets.foot.enable = lib.mkOption { + options.aesthetics.targets.kitty.enable = lib.mkOption { type = lib.types.bool; default = (aes.enableAllTargets && aes.hasGui); description = "Whether to enable the aesthetics kitty target."; }; - config = lib.mkIf (cfg.enable && config.programs.foot.enable) { + config = lib.mkIf (cfg.enable && config.programs.kitty.enable) { programs.kitty.settings = with aes.scheme; { - font_family = aes.font.name; + font_family = "${aes.font.name} Mono"; font_size = aes.font.size.small; + box_drawing_scale = "0.001, 1.5, 1.5, 2"; + background = "#${base00}"; foreground = "#${base05}"; selection_background = "#${base05}"; |
