mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-05 08:23:11 +00:00
13 lines
254 B
Nix
13 lines
254 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
users.mutableUsers = false;
|
|
users = {
|
|
users = {
|
|
"${config.services.userdata.username}" = {
|
|
isNormalUser = true;
|
|
hashedPassword = config.services.userdata.hashedMasterPassword;
|
|
};
|
|
};
|
|
};
|
|
}
|