diff --git a/dots/.config/kitty/kitty.conf.nix b/dots/.config/kitty/kitty.conf.nix index 84d8032..ec8b845 100644 --- a/dots/.config/kitty/kitty.conf.nix +++ b/dots/.config/kitty/kitty.conf.nix @@ -3,7 +3,7 @@ config, ... }: let - inherit (lib) mkIf mkEnableOption; + inherit (lib) mkIf mkEnableOption mkOption types; cfg = config.horseman.dots.kitty; username = config.horseman.username; colors = config.horseman.catppuccin.colors; @@ -11,6 +11,11 @@ in { options = { horseman.dots.kitty = { enable = mkEnableOption "~/.config/kitty/kitty.conf"; + + fontSize = mkOption { + type = types.int; + default = 11; + }; }; }; @@ -25,7 +30,7 @@ in { bold_font family='CaskaydiaCove Nerd Font' style=SemiBold italic_font family='CaskaydiaCove Nerd Font' postscript_name=CaskaydiaCoveNF-LightItalic bold_italic_font family='CaskaydiaCove Nerd Font' style='SemiBold Italic' - font_size 14 + font_size ${toString cfg.fontSize} # The basic colors foreground ${colors.text} diff --git a/machines/artemis/modules.nix b/machines/artemis/modules.nix index e225817..196af64 100644 --- a/machines/artemis/modules.nix +++ b/machines/artemis/modules.nix @@ -4,6 +4,8 @@ ]; config.horseman = { + dots.kitty.fontSize = 14; + catppuccin.flavor = "mocha"; users.default.enable = true; diff --git a/modules/wm/hyprland/default.nix b/modules/wm/hyprland/default.nix index 862504e..f6cceaa 100644 --- a/modules/wm/hyprland/default.nix +++ b/modules/wm/hyprland/default.nix @@ -102,7 +102,7 @@ in { blur = { enabled = true; size = 25; - passes = 2; + passes = 3; }; };