9 lines
238 B
Nix
9 lines
238 B
Nix
{
|
|
users.users.juliet = {
|
|
description = "Juliet";
|
|
isNormalUser = true;
|
|
extraGroups = [ "audio" "video" "bluetooth" "wheel" "input" "networkmanager" "scanner" "lp" ];
|
|
initialPassword = "password";
|
|
linger = true;
|
|
};
|
|
} |