nixos/influxdb: Fix cross compilation for config.toml

main
Christian Kögler 3 years ago
parent 07ee93716c
commit b154b6f7d8
  1. 5
      nixos/modules/services/databases/influxdb.nix

@ -96,9 +96,8 @@ let
};
} cfg.extraConfig;
configFile = pkgs.runCommand "config.toml" {
buildInputs = [ pkgs.remarshal ];
preferLocalBuild = true;
configFile = pkgs.runCommandLocal "config.toml" {
nativeBuildInputs = [ pkgs.remarshal ];
} ''
remarshal -if json -of toml \
< ${pkgs.writeText "config.json" (builtins.toJSON configOptions)} \

Loading…
Cancel
Save