summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/zfs.nix
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-04-29 14:50:52 +0800
committerPeter Hoeg <peter@hoeg.com>2020-03-21 11:15:06 +0800
commit8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af (patch)
tree7b2c92b6b8b4d5a8fdcd478f1d76a048bb425eba /nixos/modules/tasks/filesystems/zfs.nix
parent53a51f212a1295dadbbdbdcfe15ef65cd37a8518 (diff)
downloadnixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar.gz
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar.bz2
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar.lz
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar.xz
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.tar.zst
nixpkgs-8a31cf1459fbb0c9cca8365d2c89dc9dab7d21af.zip
zfs: document systemd-udev-settle dependency
Diffstat (limited to 'nixos/modules/tasks/filesystems/zfs.nix')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 09c7e074e12..07225ee88ff 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -478,6 +478,7 @@ in
         createImportService = pool:
           nameValuePair "zfs-import-${pool}" {
             description = "Import ZFS pool \"${pool}\"";
+            # we need systemd-udev-settle until https://github.com/zfsonlinux/zfs/pull/4943 is merged
             requires = [ "systemd-udev-settle.service" ];
             after = [ "systemd-udev-settle.service" "systemd-modules-load.service" ];
             wantedBy = (getPoolMounts pool) ++ [ "local-fs.target" ];