diff --git a/home/options.nix b/home/options.nix index bd1d7ad..455bd42 100644 --- a/home/options.nix +++ b/home/options.nix @@ -7,11 +7,11 @@ }; homeDirectory = lib.mkOption { type = lib.types.path; - default = "/home/${config.name}"; + default = "/home/${config.shell.name}"; }; email = lib.mkOption { type = lib.types.str; - default = "${config.name}@configureme.guv"; + default = "${config.shell.name}@configureme.guv"; }; }; }