treewide: fix eval warnings for NixOS 25.11

This commit is contained in:
Erik Arvstedt
2025-12-23 10:45:43 +01:00
parent 4303550ce3
commit 54651163ba
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ let
group = user;
dataDir = "/var/lib/charge-lnd";
configFile = builtins.toFile "charge-lnd.config" cfg.policies;
checkedConfig = pkgs.runCommandNoCC "charge-lnd-checked.config" { } ''
checkedConfig = pkgs.runCommand "charge-lnd-checked.config" { } ''
${config.nix-bitcoin.pkgs.charge-lnd}/bin/charge-lnd --check --config ${configFile}
cp ${configFile} $out
'';