nixos/netdata: fix claim_token_file -> claimTokenFile

It was forgotten in afc6f0d93b.
This commit is contained in:
Raito Bezarius 2023-06-17 17:51:45 +02:00
parent 32b1e4642b
commit 2d7e29b60e

View file

@ -269,7 +269,7 @@ in {
PrivateTmp = true;
ProtectControlGroups = true;
PrivateMounts = true;
} // (lib.optionalAttrs (cfg.claim_token_file != null) {
} // (lib.optionalAttrs (cfg.claimTokenFile != null) {
LoadCredential = [
"netdata_claim_token:${cfg.claimTokenFile}"
];