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
+12
View File
@@ -0,0 +1,12 @@
{
pkgs,
myConfig,
config,
...
}: {
hardware.i2c.enable = true;
# boot.extraModulePackages = [config.boot.kernelPackages.ddcci-driver];
# boot.kernelModules = ["ddcci_backlight"];
environment.systemPackages = with pkgs; [ddcutil];
users.users.${myConfig.nixos.username}.extraGroups = ["i2c"];
}