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

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