From 0f4f072b317bafad7016dcb9fdb3a4dd593d7f85 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 10 Apr 2026 12:13:24 +0200 Subject: 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. --- home/rices/schrottkatze/home.nix | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 home/rices/schrottkatze/home.nix (limited to 'home/rices/schrottkatze/home.nix') 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 = []; + }; + }; +} -- cgit v1.2.3 From 3d490aed63b5da725b0608fca160e362ed1abdef Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 10 Apr 2026 13:27:04 +0200 Subject: Disabled layway due to an error upstream --- home/rices/schrottkatze/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'home/rices/schrottkatze/home.nix') diff --git a/home/rices/schrottkatze/home.nix b/home/rices/schrottkatze/home.nix index 1a2b5f6..62d9aeb 100644 --- a/home/rices/schrottkatze/home.nix +++ b/home/rices/schrottkatze/home.nix @@ -7,7 +7,7 @@ ./browser.nix ./niri.nix ./eww.nix - ./layaway.nix + # ./layaway.nix ./stylix.nix ]; -- cgit v1.2.3