diff --git a/hosts/nixos/lapetus/filesystems/zfs.nix b/hosts/nixos/lapetus/filesystems/zfs.nix index 8d49409..ba7827c 100644 --- a/hosts/nixos/lapetus/filesystems/zfs.nix +++ b/hosts/nixos/lapetus/filesystems/zfs.nix @@ -9,7 +9,7 @@ in boot.kernelParams = [ "nohibernate" ]; # {{{ Mount usb for zfs secrets - boot.initrd.systemd.mounts.hermes = { + boot.initrd.systemd.mounts = [{ where = "/hermes"; what = "/dev/sdb"; type = "exfat"; @@ -19,7 +19,7 @@ in wantedBy = [ "zfs-import.target" ]; before = [ "zfs-import.target" ]; - }; + }]; # }}} boot.initrd.systemd.services = {