config: disabled default options for name and email to require setting

This commit is contained in:
Devyn Freet
2026-07-10 23:48:13 -04:00
parent ce24efde01
commit 368f092bd3
+2 -2
View File
@@ -3,7 +3,7 @@
options = { options = {
name = lib.mkOption { name = lib.mkOption {
type = lib.types.str; type = lib.types.str;
default = "nyx"; #default = "nyx";
}; };
homeDirectory = lib.mkOption { homeDirectory = lib.mkOption {
type = lib.types.path; type = lib.types.path;
@@ -11,7 +11,7 @@
}; };
email = lib.mkOption { email = lib.mkOption {
type = lib.types.str; type = lib.types.str;
default = "${config.name}@configureme.guv"; #default = "${config.name}@configureme.guv";
}; };
}; };
} }