nixos/systemd: enable systemd-pstore.service

As described in issue #81138, the Install section of upstream units is
currently ignored, so we make it part of the sysinit.target manually.
This commit is contained in:
hyperfekt
2021-05-09 23:21:51 +02:00
parent 870fa77ff6
commit 3e3e763a07
3 changed files with 16 additions and 0 deletions
+2
View File
@@ -90,6 +90,7 @@ let
"systemd-fsck@.service"
"systemd-fsck-root.service"
"systemd-remount-fs.service"
"systemd-pstore.service"
"local-fs.target"
"local-fs-pre.target"
"remote-fs.target"
@@ -1183,6 +1184,7 @@ in
systemd.targets.remote-fs.unitConfig.X-StopOnReconfiguration = true;
systemd.targets.network-online.wantedBy = [ "multi-user.target" ];
systemd.services.systemd-importd.environment = proxy_env;
systemd.services.systemd-pstore.wantedBy = [ "sysinit.target" ]; # see #81138
# Don't bother with certain units in containers.
systemd.services.systemd-remount-fs.unitConfig.ConditionVirtualization = "!container";