mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #10195 from cleverca22/master
build the crontab localy, there is nothing to gain from building it remotely
This commit is contained in:
commit
241821cbb4
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ in
|
|||
environment.systemPackages = [ cronNixosPkg ];
|
||||
|
||||
environment.etc.crontab =
|
||||
{ source = pkgs.runCommand "crontabs" { inherit allFiles; }
|
||||
{ source = pkgs.runCommand "crontabs" { inherit allFiles; preferLocalBuild = true; }
|
||||
''
|
||||
touch $out
|
||||
for i in $allFiles; do
|
||||
|
|
Loading…
Reference in a new issue