From ed6137109d5554e832cc536e377a51daf1c14657 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 25 Jun 2013 10:46:23 -0400 Subject: [PATCH] Fix filesystem initialization systemd units Signed-off-by: Shea Levy --- modules/tasks/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tasks/filesystems.nix b/modules/tasks/filesystems.nix index cc7f1f40742..4ca309f5a10 100644 --- a/modules/tasks/filesystems.nix +++ b/modules/tasks/filesystems.nix @@ -191,7 +191,7 @@ in { description = "Initialisation of Filesystem ${fs.device}"; wantedBy = [ "${mountPoint'}.mount" ]; before = [ "${mountPoint'}.mount" "systemd-fsck@${device'}.service" ]; - require = [ "${device'}.device" ]; + requires = [ "${device'}.device" ]; after = [ "${device'}.device" ]; path = [ pkgs.utillinux ] ++ config.system.fsPackages; script =