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

This commit is contained in:
Bruno BELANYI 2023-09-28 15:57:04 +00:00
parent 03a1f704aa
commit 24d41e829e

View file

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