kitty font size option
This commit is contained in:
parent
2468c5ab74
commit
10a37111fa
3 changed files with 10 additions and 3 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@
|
|||
];
|
||||
|
||||
config.horseman = {
|
||||
dots.kitty.fontSize = 14;
|
||||
|
||||
catppuccin.flavor = "mocha";
|
||||
|
||||
users.default.enable = true;
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ in {
|
|||
blur = {
|
||||
enabled = true;
|
||||
size = 25;
|
||||
passes = 2;
|
||||
passes = 3;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue