Fix wrong system mount option type
This commit is contained in:
parent
9fae7989b8
commit
c7888bef47
|
@ -9,7 +9,7 @@ in
|
||||||
boot.kernelParams = [ "nohibernate" ];
|
boot.kernelParams = [ "nohibernate" ];
|
||||||
|
|
||||||
# {{{ Mount usb for zfs secrets
|
# {{{ Mount usb for zfs secrets
|
||||||
boot.initrd.systemd.mounts.hermes = {
|
boot.initrd.systemd.mounts = [{
|
||||||
where = "/hermes";
|
where = "/hermes";
|
||||||
what = "/dev/sdb";
|
what = "/dev/sdb";
|
||||||
type = "exfat";
|
type = "exfat";
|
||||||
|
@ -19,7 +19,7 @@ in
|
||||||
|
|
||||||
wantedBy = [ "zfs-import.target" ];
|
wantedBy = [ "zfs-import.target" ];
|
||||||
before = [ "zfs-import.target" ];
|
before = [ "zfs-import.target" ];
|
||||||
};
|
}];
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
boot.initrd.systemd.services = {
|
boot.initrd.systemd.services = {
|
||||||
|
|
Loading…
Reference in a new issue