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

authored by Nick Cao and committed by GitHub 2a6b728b 4bf98eb3

+10
+10
nixos/modules/services/monitoring/glpi-agent.nix
··· 77 } 78 ]; 79 80 systemd.services.glpi-agent = { 81 description = "GLPI Agent"; 82 wantedBy = [ "multi-user.target" ];
··· 77 } 78 ]; 79 80 + systemd.tmpfiles.settings."10-glpi-agent" = { 81 + ${cfg.stateDir} = { 82 + d = { 83 + mode = "0755"; 84 + user = "root"; 85 + group = "root"; 86 + }; 87 + }; 88 + }; 89 + 90 systemd.services.glpi-agent = { 91 description = "GLPI Agent"; 92 wantedBy = [ "multi-user.target" ];