modules: system: users: fix deprecated option name
ci/woodpecker/push/check Pipeline was successful Details

This commit is contained in:
Bruno BELANYI 2023-09-28 15:57:04 +00:00
parent 03a1f704aa
commit 24d41e829e
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ in
users = {
root = {
passwordFile = secrets."users/root/hashed-password".path;
hashedPasswordFile = secrets."users/root/hashed-password".path;
};
${config.my.user.name} = {
passwordFile = secrets."users/ambroisie/hashed-password".path;
hashedPasswordFile = secrets."users/ambroisie/hashed-password".path;
description = "Bruno BELANYI";
isNormalUser = true;
shell = pkgs.zsh;