nixos/modules/users/root.nix
chn c4e496bec0 安装 virt-manager
用户可以不使用sops
2023-06-17 21:24:30 +08:00

14 lines
372 B
Nix

{ bootstrape ? false }: { pkgs, ... }@inputs:
{
config =
{
users =
{
users.root = { shell = inputs.pkgs.zsh; }
// (if bootstrape then { password = "0"; }
else { passwordFile = inputs.config.sops.secrets."password/root".path; });
mutableUsers = false;
};
} // (if !bootstrape then { sops.secrets."password/root".neededForUsers = true; } else {});
}