s/runCommandNoCC/runCommand/g

This commit is contained in:
Astro 2022-09-26 23:47:36 +02:00
parent 9039e1555b
commit f329cd3b70
3 changed files with 3 additions and 3 deletions

View File

@ -280,7 +280,7 @@
'') (builtins.attrNames self.nixosConfigurations)} '') (builtins.attrNames self.nixosConfigurations)}
''; '';
prebuild-all = pkgs.runCommandNoCC "prebuild-all" { prebuild-all = pkgs.runCommand "prebuild-all" {
preferLocalBuild = true; preferLocalBuild = true;
} '' } ''
mkdir $out mkdir $out

View File

@ -31,7 +31,7 @@
options = [ "nfsvers=3" "proto=tcp" "nolock" "hard" "async" "rw" ]; 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 mkdir -p $out/boot
${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d $out/boot ${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d $out/boot
''; '';

View File

@ -27,7 +27,7 @@
virtualHosts."adsb.hq.c3d2.de" = { virtualHosts."adsb.hq.c3d2.de" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
root = pkgs.runCommandNoCC "adsb-map" {} '' root = pkgs.runCommand "adsb-map" {} ''
mkdir $out mkdir $out
cp ${./adsb.html} $out/index.html cp ${./adsb.html} $out/index.html
cp ${./airplane.svg} $out/airplane.svg cp ${./airplane.svg} $out/airplane.svg