diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2022-09-05 17:23:17 +0200 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2022-09-05 17:23:17 +0200 |
commit | 55197cfc55c345a3803ad312d70cae9cbaf38eb1 (patch) | |
tree | 20b225e7a1241bb1ad66616196606ae28e54bb64 | |
parent | 11d708dc31d9881aa647650bf9173860469152c2 (diff) |
config: fix fsType for zfs
-rw-r--r-- | types.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"; }; }; }; |