1
Fork 0

Fix wrong system mount option type

This commit is contained in:
Matei Adriel 2024-01-17 11:24:22 +01:00
parent 9fae7989b8
commit c7888bef47
No known key found for this signature in database

View file

@ -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 = {