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:
Kiana Sheibani 2024-10-23 16:49:00 -04:00
parent b542ff2162
commit b9acd932e9
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -2,6 +2,6 @@
{
options.machine = lib.mkOption {
description = "The machine hostname to configure for";
type = lib.types.enum [ "earth" "fire" "air" "water" ];
type = lib.types.str;
};
}