diff options
author | Jamey Sharp <jamey@minilop.net> | 2018-09-29 10:55:46 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2018-09-29 23:37:38 -0700 |
commit | f449242e83bd441300f009321157dd308326cfcc (patch) | |
tree | ab6ba8eb21586c404d09aa201fd2895fb9dd8dc3 /nixos | |
parent | f5f9625bffac5f6a56cae78ea392e551fb61d6f3 (diff) |
nixos/systemd: remove activation dependency
As far as I can tell, the systemd snippet hasn't depended on groups being initialized since 5d02c02a9bfd6912e4e0f700b1b35e76d1d6bd3f in 2015, when a `setfacl` call was removed.
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/system/boot/systemd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 12e029ae57f8..c96a502a892f 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -783,7 +783,7 @@ in services.dbus.enable = true; - system.activationScripts.systemd = stringAfter [ "groups" ] + system.activationScripts.systemd = '' mkdir -m 0755 -p /var/lib/udev |