ensure local webapp user services disabled by default

This commit is contained in:
atagen 2024-05-16 12:13:55 +10:00
parent 4ae5e113fe
commit 8d6ad2d9d2

View file

@ -24,7 +24,10 @@
make-systemd = cfg:
mapAttrs (
name: cfg: {
Unit.Description = "${cfg.name} Backend";
Unit = {
Description = "${cfg.name} Backend";
WantedBy = [];
};
Service = cfg.service;
}
)