fix variable interpolation in service description
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 12s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m24s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 7m27s

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2025-04-28 17:10:42 -04:00
parent 83035d498f
commit 9532d7a770
No known key found for this signature in database
GPG Key ID: 47940175096C1330

View File

@ -73,7 +73,9 @@ in
lib.nameValuePair "nix-verifiers@${service-name}" {
requires = [ "multi-user.target" ];
after = [ "multi-user.target" ];
description = "Verify nix store (verify-contents: ${verify-contents}, verify-trust: ${verify-trust}, signatures-needed: ${signatures-needed})";
description =
"Verify nix store (verify-contents: ${lib.boolToString verify-contents}, verify-trust: "
+ "${lib.boolToString verify-trust}, signatures-needed: ${builtins.toString signatures-needed})";
serviceConfig = {
Type = "oneshot";
User = "root";