refactor: use 'default.nix' for all modules

This commit is contained in:
2026-03-11 21:25:22 +01:00
parent 591bd25a3d
commit 2e2e52aa78
12 changed files with 20 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
users.users.h = {
isNormalUser = true;
description = "h";
extraGroups = [ "wheel" ];
initialPassword = "h";
};
}