From 4b34550f99c3e477fd1aedaf032a1b4fc3b42000 Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Fri, 8 Sep 2023 16:27:44 +0200 Subject: [PATCH] Make hostname a string instead of an enum --- nixos/base/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/base/default.nix b/nixos/base/default.nix index 0982ec87..889ef1ce 100644 --- a/nixos/base/default.nix +++ b/nixos/base/default.nix @@ -29,7 +29,7 @@ in options = { custom.base = { hostname = mkOption { - type = types.enum [ "altair" "bcr-nl011" "nixos-vm" ]; + type = types.str; description = "Host name."; };