nixos/glpi-agent: fix missing directory (#381476)

This commit is contained in:
Nick Cao 2025-02-13 19:57:35 -05:00 committed by GitHub
commit 2a6b728b2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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" ];