config: disabled default options for name and email to require setting
This commit is contained in:
+2
-2
@@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user