diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-06 18:18:04 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-06 18:18:42 +0200 |
| commit | 2c63de08728097c2f219e533fbc2cc3f1cc0643a (patch) | |
| tree | 102cdf1a0d401e994b1872f7a92db515f4b807eb /home/rices/cosmic/stylix.nix | |
| parent | 37af8b898cc07857871406d545fbee1ac3c49da7 (diff) | |
Configured stylix for the cosmic rice
Diffstat (limited to 'home/rices/cosmic/stylix.nix')
| -rw-r--r-- | home/rices/cosmic/stylix.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/home/rices/cosmic/stylix.nix b/home/rices/cosmic/stylix.nix new file mode 100644 index 0000000..1c89567 --- /dev/null +++ b/home/rices/cosmic/stylix.nix @@ -0,0 +1,33 @@ +{pkgs, ...}: let + vars = import ./variables.nix; +in { + stylix = { + enable = true; + base16Scheme = "${pkgs.base16-schemes}/share/themes/espresso.yaml"; + polarity = "dark"; + + image = vars.image; + + fonts = { + serif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Serif"; + }; + + sansSerif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Sans"; + }; + + monospace = { + package = pkgs.dejavu_fonts; + name = "DejaVu Sans Mono"; + }; + + emoji = { + package = pkgs.noto-fonts-color-emoji; + name = "Noto Color Emoji"; + }; + }; + }; +} |
