mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 12:01:27 +00:00
Added implicit user creation
This commit is contained in:
parent
93df0021c4
commit
7df10a99b4
|
@ -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…
Reference in a new issue