patos/modules/profiles/sysext.nix

24 lines
503 B
Nix
Raw Permalink Normal View History

2024-11-15 21:09:57 +01:00
{ ... }:
{
system.activationScripts.sysext = ''
mkdir -p /var/lib/confexts
mkdir -p /var/lib/extensions
mkdir -p /etc/systemd/extensions
'';
systemd.additionalUpstreamSystemUnits = [
"systemd-confext.service"
"systemd-sysext.service"
];
# systemd.services."systemd-confext" = {
# enable = true;
# wantedBy = [ "multi-user.target" ];
# };
2024-11-15 21:09:57 +01:00
# systemd.services."systemd-sysext.service" = {
# enable = true;
# wantedBy = [ "multi-user.target" ];
# };
2024-11-15 21:09:57 +01:00
}