From 55197cfc55c345a3803ad312d70cae9cbaf38eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 5 Sep 2022 17:23:17 +0200 Subject: config: fix fsType for zfs --- types.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.nix b/types.nix index c71f05e..46c114d 100644 --- a/types.nix +++ b/types.nix @@ -763,7 +763,7 @@ rec { (optionalAttrs (!isNull config.mountpoint) { fileSystems.${config.mountpoint} = { device = config.name; - fsType = [ "zfs" ]; + fsType = "zfs"; }; }); }; @@ -851,7 +851,7 @@ rec { optionalAttrs (config.zfs_type == "filesystem" && config.options.mountpoint or "" != "none") { fileSystems.${config.mountpoint} = { device = "${zpool}/${config.name}"; - fsType = [ "zfs" ]; + fsType = "zfs"; }; }; }; -- cgit v1.2.3