refactor(modules): rename system/ to nixos/

Clearer naming to distinguish NixOS system modules from
Home Manager modules (nixos/ vs home/).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kenji
2025-12-30 19:13:10 -06:00
parent 33d80a34bb
commit 6919f27890
20 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ This is a modular, flake-based NixOS configuration for a single host (`hakase`).
### Module Organization ### Module Organization
**Two-tier module system:** **Two-tier module system:**
- `modules/system/` - NixOS system-level modules (boot, kernel, services, hardware) - `modules/nixos/` - NixOS system-level modules (boot, kernel, services, hardware)
- `modules/home/` - Home Manager user-level modules (imported via `home/hakase.nix`) - `modules/home/` - Home Manager user-level modules (imported via `home/hakase.nix`)
**Application configs:** Each application has its own directory in `apps/` with a `default.nix` and optional sub-modules (e.g., `apps/hyprland/hypr/*.nix` for Hyprland settings). **Application configs:** Each application has its own directory in `apps/` with a `default.nix` and optional sub-modules (e.g., `apps/hyprland/hypr/*.nix` for Hyprland settings).
@@ -37,7 +37,7 @@ This is a modular, flake-based NixOS configuration for a single host (`hakase`).
flake.nix flake.nix
└─ nixosConfigurations.hakase └─ nixosConfigurations.hakase
├─ hosts/hakase/configuration.nix ├─ hosts/hakase/configuration.nix
│ └─ modules/system/default.nix (imports all system modules) │ └─ modules/nixos/default.nix (imports all system modules)
└─ home-manager └─ home-manager
└─ home/hakase.nix └─ home/hakase.nix
└─ modules/home/* → apps/* └─ modules/home/* → apps/*
+3 -3
View File
@@ -5,8 +5,8 @@
}: { }: {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/system/default.nix ../../modules/nixos/default.nix
../../modules/system/hyprland.nix ../../modules/nixos/hyprland.nix
../../modules/system/gaming.nix ../../modules/nixos/gaming.nix
]; ];
} }