From 93f36fd65cd65ea0b15f1add21cbb0a212d276d8 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Tue, 7 Apr 2026 12:00:25 +0200 Subject: Restructured rice system to separate system and home-manager configs Each rice now exports {system, home} with: - system.nix: NixOS-level configs (DE, services, packages, stylix) - home.nix: Home-manager configs (program dotfiles) - default.nix: Exports both modules Applied to: nord-blue, original, plasma6 For plasma6: merged plasma.nix and stylix.nix into system.nix --- home/rices/original/default.nix | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'home/rices/original/default.nix') diff --git a/home/rices/original/default.nix b/home/rices/original/default.nix index cb2b4ca..6b7865d 100644 --- a/home/rices/original/default.nix +++ b/home/rices/original/default.nix @@ -1,14 +1,4 @@ -{...}: { - imports = [ - ./dunst.nix - ./i3.nix - ./kitty.nix - ./neovim.nix - ./nnn.nix - ./picom.nix - ./polybar.nix - ./rofi.nix - ./scripts.nix - ./xdg.nix - ]; +{ + system = import ./system.nix; + home = import ./home.nix; } -- cgit v1.2.3