diff options
Diffstat (limited to '')
| -rw-r--r-- | stylix.nix | 34 |
1 files changed, 29 insertions, 5 deletions
@@ -1,8 +1,32 @@ { config, pkgs, ... }: { - stylix.enable = true; - stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml"; - stylix.polarity = "dark"; - stylix.image = ./backgrounds/hollowknightbackground_2560x1440.png; -} + stylix = { + enable = true; + base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml"; + polarity = "dark"; + image = ./backgrounds/hollowknightbackground_2560x1440.png; +fonts = { + monospace = { + package = pkgs.nerd-fonts.jetbrains-mono; + name = "JetBrainsMono Nerd Font"; + }; + serif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Serif"; + }; + sansSerif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Sans"; + }; + emoji = { + package = pkgs.noto-fonts-emoji; + name = "Noto Color Emoji"; + }; + }; + + + }; + } + + |
