From b9acd932e981da59b1cd9d78334c048d1853c51e Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 23 Oct 2024 16:49:00 -0400 Subject: [PATCH] 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. --- machine.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine.nix b/machine.nix index c3d7e77..5a125a8 100644 --- a/machine.nix +++ b/machine.nix @@ -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; }; }