summary refs log tree commit diff
path: root/nixos/modules/tasks
diff options
context:
space:
mode:
authorSvein Ove Aas <sveina@gmail.com>2018-06-09 00:06:22 +0100
committerSvein Ove Aas <sveina@gmail.com>2018-06-09 01:17:04 +0100
commitdeb6c6e052a7c7d255835cb50ea2d39890c817a8 (patch)
tree1e1cd4ce8b5096da066bf9c915433e94e9dde12f /nixos/modules/tasks
parent500f1a94388f817b9d2d91ffbb68cf554268c2d7 (diff)
downloadnixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar.gz
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar.bz2
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar.lz
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar.xz
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.tar.zst
nixlib-deb6c6e052a7c7d255835cb50ea2d39890c817a8.zip
zfs: Fix "zfs-sync" for modern systemd
Diffstat (limited to 'nixos/modules/tasks')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index c3bf897d51fd..de735e9ba11b 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -403,6 +403,9 @@ in
           nameValuePair "zfs-sync-${pool}" {
             description = "Sync ZFS pool \"${pool}\"";
             wantedBy = [ "shutdown.target" ];
+            unitConfig = {
+              DefaultDependencies = false;
+            };
             serviceConfig = {
               Type = "oneshot";
               RemainAfterExit = true;