refactor: use 'default.nix' for all modules

This commit is contained in:
2025-12-03 23:43:43 +01:00
parent 683e6e4d10
commit 4d6ba61f52
12 changed files with 20 additions and 19 deletions

10
modules/users/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
users.users.h = {
isNormalUser = true;
description = "h";
extraGroups = [ "wheel" ];
initialPassword = "h";
};
}