diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 12:05:17 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 12:05:17 +0200 |
| commit | 31f8b7a3475cfe6f6c98aac0835477c5190f1d8e (patch) | |
| tree | 55a4c93f4df6ea7bca8a51ffafb2eb6dc4359b80 /home/rices/nord-blue | |
| parent | b36a8271ad7e52d2ecfcf93ce98ce238c833f4a3 (diff) | |
| parent | eaf2ae5fbcbdfecb7d07aa1067b2e55209fcd411 (diff) | |
Merge branch 'refactor-rice-system'
Diffstat (limited to 'home/rices/nord-blue')
| -rw-r--r-- | home/rices/nord-blue/default.nix | 15 | ||||
| -rw-r--r-- | home/rices/nord-blue/home.nix | 10 |
2 files changed, 13 insertions, 12 deletions
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 + ]; +} |
