From 2cf0261a5517c058c47c9bf61afadf1275114026 Mon Sep 17 00:00:00 2001 From: kat Date: Sun, 17 Jul 2022 18:14:28 -0700 Subject: [PATCH] fix: oracle type enum error --- hardware/oracle/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/oracle/common.nix b/hardware/oracle/common.nix index 122c23c2..aaf16373 100644 --- a/hardware/oracle/common.nix +++ b/hardware/oracle/common.nix @@ -9,7 +9,7 @@ in Canonical Ubuntu provides an EXT4 root filesystem. Oracle Linux provides an XFS root filesystem. ''; - type = lib.enum [ + type = lib.types.enum [ "Canonical Ubuntu" "Oracle Linux" ];