feat(nix): add rebuild script for when local cache is down
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
0a60fa42a4
commit
fd9880e00d
1 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,18 @@
|
||||||
{...}: {
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
(writeShellApplication {
|
||||||
|
name = "rebuild-no-cache";
|
||||||
|
runtimeInputs = [config.nh.package];
|
||||||
|
text = ''
|
||||||
|
nh os switch -- --option binary-caches "https://cache.nixos.org" "$@"
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
substituters = [
|
substituters = [
|
||||||
|
|
Loading…
Reference in a new issue