modules: change username configuration option

It makes more sense to have a `my.user` option.
This commit is contained in:
Bruno BELANYI 2021-06-25 20:40:34 +02:00
parent 0ff730bf44
commit 76cac9af51
4 changed files with 11 additions and 9 deletions

View file

@ -20,8 +20,8 @@ in
inherit (secrets.users.root) hashedPassword;
};
${config.my.username} = {
inherit (secrets.users.${config.my.username}) hashedPassword;
${config.my.user.name} = {
inherit (secrets.users.${config.my.user.name}) hashedPassword;
description = "Bruno BELANYI";
isNormalUser = true;
shell = pkgs.zsh;