diff --git a/flake.nix b/flake.nix index 8e2a0028..336ee5fb 100644 --- a/flake.nix +++ b/flake.nix @@ -280,7 +280,7 @@ '') (builtins.attrNames self.nixosConfigurations)} ''; - prebuild-all = pkgs.runCommandNoCC "prebuild-all" { + prebuild-all = pkgs.runCommand "prebuild-all" { preferLocalBuild = true; } '' mkdir $out diff --git a/hosts/riscbert/default.nix b/hosts/riscbert/default.nix index 912dc7b3..6ac7044f 100644 --- a/hosts/riscbert/default.nix +++ b/hosts/riscbert/default.nix @@ -31,7 +31,7 @@ options = [ "nfsvers=3" "proto=tcp" "nolock" "hard" "async" "rw" ]; }; - system.build.bootFiles = pkgs.runCommandNoCC "boot-files" {} '' + system.build.bootFiles = pkgs.runCommand "boot-files" {} '' mkdir -p $out/boot ${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d $out/boot ''; diff --git a/hosts/sdrweb/default.nix b/hosts/sdrweb/default.nix index 1b976f75..11db3d86 100644 --- a/hosts/sdrweb/default.nix +++ b/hosts/sdrweb/default.nix @@ -27,7 +27,7 @@ virtualHosts."adsb.hq.c3d2.de" = { forceSSL = true; enableACME = true; - root = pkgs.runCommandNoCC "adsb-map" {} '' + root = pkgs.runCommand "adsb-map" {} '' mkdir $out cp ${./adsb.html} $out/index.html cp ${./airplane.svg} $out/airplane.svg