12 lines
343 B
Nix
12 lines
343 B
Nix
{config, ...}: {
|
|
users = {
|
|
mutableUsers = false;
|
|
|
|
users.users."${config.marleyos.my.name}" = {
|
|
isNormalUser = true;
|
|
description = config.marleyos.my.fullName;
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
hashedPassword = "$y$j9T$ztWf9WeUCENC2T12qS4mi1$51ihV/5cQ8mdJJrNe7MMguk4hPB61S5xHawsfi.1hL3";
|
|
};
|
|
};
|
|
}
|