mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2025-03-21 04:59:32 +00:00
Added implicit user creation
This commit is contained in:
parent
93df0021c4
commit
7df10a99b4
1 changed files with 7 additions and 0 deletions
|
@ -124,6 +124,13 @@ makeConf() {
|
||||||
wheelNeedsPassword = true;
|
wheelNeedsPassword = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
users.mutableUsers = false;
|
||||||
|
users.users = {
|
||||||
|
"$USER" = {
|
||||||
|
isNormalUser = true;
|
||||||
|
hashedPassword = "$HASHED_PASSWORD";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
# If you rerun this later, be sure to prune the filesSystems attr
|
# If you rerun this later, be sure to prune the filesSystems attr
|
||||||
|
|
Loading…
Add table
Reference in a new issue