fix: replaced config.name with config.shell.name in options

This commit is contained in:
Devyn Freet
2026-07-11 00:11:05 -04:00
parent 087d0f27ec
commit 5c6953c610
+2 -2
View File
@@ -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";
};
};
}