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/nord-blue/default.nix | 15 +++------------ home/rices/nord-blue/home.nix | 10 ++++++++++ 2 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 home/rices/nord-blue/home.nix (limited to 'home/rices/nord-blue') diff --git a/home/rices/nord-blue/default.nix b/home/rices/nord-blue/default.nix index 1eb5514..6b7865d 100644 --- a/home/rices/nord-blue/default.nix +++ b/home/rices/nord-blue/default.nix @@ -1,13 +1,4 @@ -{...}: { - imports = [ - ./alacritty.nix - ./i3.nix - ./nvim.nix - ./helix.nix - ./picom.nix - ./fastfetch.nix - ]; - - # Rice is purely home-manager level - # Desktop environment (X server, i3wm) is set in system/desktop.nix +{ + system = import ./system.nix; + home = import ./home.nix; } diff --git a/home/rices/nord-blue/home.nix b/home/rices/nord-blue/home.nix new file mode 100644 index 0000000..61d2af4 --- /dev/null +++ b/home/rices/nord-blue/home.nix @@ -0,0 +1,10 @@ +{...}: { + imports = [ + ./alacritty.nix + ./i3.nix + ./nvim.nix + ./helix.nix + ./picom.nix + ./fastfetch.nix + ]; +} -- cgit v1.2.3