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 c6d21493ef
commit 0f17123d09
4 changed files with 11 additions and 9 deletions

View file

@ -72,7 +72,7 @@
} }
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
({ config, ... }: { ({ config, ... }: {
home-manager.users.${config.my.username} = import ./home; home-manager.users.${config.my.user.name} = import ./home;
# Nix Flakes compatibility # Nix Flakes compatibility
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;

View file

@ -10,11 +10,13 @@
]; ];
options.my = with lib; { options.my = with lib; {
username = mkOption { user = {
type = types.str; name = mkOption {
default = "ambroisie"; type = types.str;
example = "alice"; default = "ambroisie";
description = "my username"; example = "alice";
description = "my username";
};
}; };
}; };
} }

View file

@ -1,7 +1,7 @@
# Simplify setting home options # Simplify setting home options
{ config, lib, ... }: { config, lib, ... }:
let let
actualPath = [ "home-manager" "users" config.my.username "my" "home" ]; actualPath = [ "home-manager" "users" config.my.user.name "my" "home" ];
aliasPath = [ "my" "home" ]; aliasPath = [ "my" "home" ];
in in
{ {

View file

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