diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:24 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:24 +0200 |
| commit | 0f4f072b317bafad7016dcb9fdb3a4dd593d7f85 (patch) | |
| tree | 00c27ce036e6cadf5baf863998b192249d2228b1 /home/rices/schrottkatze/stylix.nix | |
| parent | a414126dbda913dcc33d5f9546a9f99859d1557f (diff) | |
Add schrottkatze rice: core structure and stylix config
default.nix exports {system, home}, system.nix has Niri, GDM,
Gruvbox Dark Hard stylix, polkit, audio, fonts, XDG portals.
stylix.nix has HM-level target overrides, GTK cursor/icon theme.
Diffstat (limited to 'home/rices/schrottkatze/stylix.nix')
| -rw-r--r-- | home/rices/schrottkatze/stylix.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/home/rices/schrottkatze/stylix.nix b/home/rices/schrottkatze/stylix.nix new file mode 100644 index 0000000..a3eaeaa --- /dev/null +++ b/home/rices/schrottkatze/stylix.nix @@ -0,0 +1,23 @@ +{pkgs, ...}: { + stylix.targets = { + helix.enable = false; + btop.enable = false; + nushell.enable = false; + starship.enable = false; + kitty.enable = false; + dunst.enable = false; + wofi.enable = false; + }; + gtk = { + enable = true; + cursorTheme = { + package = pkgs.phinger-cursors; + name = "phinger-cursors"; + size = 30; + }; + iconTheme = { + package = pkgs.gruvbox-dark-icons-gtk; + name = "gruvbox-dark-icons"; + }; + }; +} |
