refactor: remove type restriction on machine option
There's no real need to be so restrictive about what kinds of machine names there can be.
This commit is contained in:
parent
b542ff2162
commit
b9acd932e9
|
@ -2,6 +2,6 @@
|
||||||
{
|
{
|
||||||
options.machine = lib.mkOption {
|
options.machine = lib.mkOption {
|
||||||
description = "The machine hostname to configure for";
|
description = "The machine hostname to configure for";
|
||||||
type = lib.types.enum [ "earth" "fire" "air" "water" ];
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue