fix(bin-cache): fix buildAll script
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
e76a45b7ab
commit
309ada567b
1 changed files with 6 additions and 4 deletions
|
@ -40,10 +40,10 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
path =
|
path =
|
||||||
[
|
[nix-fast-buildPkg]
|
||||||
nix-fast-buildPkg
|
|
||||||
]
|
|
||||||
++ (with pkgs; [
|
++ (with pkgs; [
|
||||||
|
bash
|
||||||
|
config.nix.package
|
||||||
git
|
git
|
||||||
openssh
|
openssh
|
||||||
]);
|
]);
|
||||||
|
@ -59,9 +59,11 @@ in {
|
||||||
cd ..
|
cd ..
|
||||||
rm -r nix-clone
|
rm -r nix-clone
|
||||||
|
|
||||||
nix build sourcehut:~rycee/mozilla-addons-to-nix
|
# Just to cache mozilla-addons-to-nix
|
||||||
|
nix run sourcehut:~rycee/mozilla-addons-to-nix -- --help
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
timers.buildAll = {
|
timers.buildAll = {
|
||||||
wantedBy = ["timers.target"];
|
wantedBy = ["timers.target"];
|
||||||
partOf = ["buildAll.service"];
|
partOf = ["buildAll.service"];
|
||||||
|
|
Loading…
Reference in a new issue