From 5c6953c61081c7208a6c5e3b0e6ed32016ea2873 Mon Sep 17 00:00:00 2001 From: Devyn Freet Date: Sat, 11 Jul 2026 00:11:05 -0400 Subject: [PATCH] fix: replaced config.name with config.shell.name in options --- home/options.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; }; }; }