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