nixos/glpi-agent: fix missing directory

This commit is contained in:
liberodark 2025-02-12 15:29:48 +01:00
parent 39086c7922
commit fbe520b3a9

View File

@ -77,6 +77,16 @@ in
}
];
systemd.tmpfiles.settings."10-glpi-agent" = {
${cfg.stateDir} = {
d = {
mode = "0755";
user = "root";
group = "root";
};
};
};
systemd.services.glpi-agent = {
description = "GLPI Agent";
wantedBy = [ "multi-user.target" ];