From 3d7778f5cfdfcb75c03321215ed0a3843641e995 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Sat, 5 Oct 2024 17:19:30 +0200 Subject: [PATCH] Enable systemd-sysext --- modules/sysupdate.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/sysupdate.nix b/modules/sysupdate.nix index 8d05b14..75a0a74 100644 --- a/modules/sysupdate.nix +++ b/modules/sysupdate.nix @@ -27,6 +27,12 @@ in { environment.etc."systemd/import-pubring.gpg".source = "${gpgKeyring}/import-pubring.gpg"; + systemd.additionalUpstreamSystemUnits = [ + "systemd-sysext.service" + ]; + + systemd.services."systemd-sysext.service".enable = true; + systemd.sysupdate = { enable = true;