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/home.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/home.nix')
| -rw-r--r-- | home/rices/schrottkatze/home.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/home/rices/schrottkatze/home.nix b/home/rices/schrottkatze/home.nix new file mode 100644 index 0000000..1a2b5f6 --- /dev/null +++ b/home/rices/schrottkatze/home.nix @@ -0,0 +1,43 @@ +{pkgs, ...}: { + imports = [ + ./terminal.nix + ./notifications.nix + ./fuzzel.nix + ./swayidle.nix + ./browser.nix + ./niri.nix + ./eww.nix + ./layaway.nix + ./stylix.nix + ]; + + programs.swaylock.enable = true; + services.network-manager-applet.enable = true; + xsession.enable = true; + + home.packages = with pkgs; [ + fluent-reader + obsidian + zsh + hyprpicker + bemoji + librsvg + cairo + xwayland-satellite + ]; + + services.gpg-agent = { + enable = true; + enableSshSupport = true; + }; + + fonts.fontconfig = { + enable = true; + defaultFonts = { + emoji = ["Noto Color Emoji"]; + monospace = []; + sansSerif = ["Atkinson Hyperlegible"]; + serif = []; + }; + }; +} |
