14 lines
234 B
Nix
14 lines
234 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
config = lib.mkMerge [
|
|
{
|
|
users.users."${config.system.mainUser}" = {
|
|
isNormalUser = true;
|
|
initialPassword = "1";
|
|
extraGroups = [
|
|
"wheel"
|
|
];
|
|
};
|
|
}
|
|
];
|
|
}
|