diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 11:00:23 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 11:00:23 +0200 |
| commit | 89de6a101797d676cdd25dbe743412b71d1cbced (patch) | |
| tree | fe7da24fe3508a1ae519dd094e89c2e8945c8c08 /home/rices/plasma6/stylix.nix | |
| parent | d6f07bca4872a5ac6bba29e941b779454cd01630 (diff) | |
Added base plasma6 "rice" and stylix configuration
Diffstat (limited to 'home/rices/plasma6/stylix.nix')
| -rw-r--r-- | home/rices/plasma6/stylix.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/home/rices/plasma6/stylix.nix b/home/rices/plasma6/stylix.nix new file mode 100644 index 0000000..1c89567 --- /dev/null +++ b/home/rices/plasma6/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"; + }; + }; + }; +} |
