nix: extra-substituters

This commit is contained in:
Primrose 2024-06-25 20:24:33 +02:00
parent b2426ceb26
commit eacfd6f817
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 43 additions and 7 deletions

View file

@ -11,6 +11,7 @@ let
};
substituters = import ./substituters.nix;
extra-substituters = import ./extra-substituters.nix;
mkNixOS =
name: sys: hmOpts:
@ -40,8 +41,8 @@ let
"${self}/nix/home/_"
"${self}/nix/home/${name}"
nixpkgsRegistry
extra-substituters
hmOpts
substituters
];
};
}
@ -77,7 +78,7 @@ let
"${self}/nix/home/_"
"${self}/nix/home/${name}"
nixpkgsRegistry
substituters
extra-substituters
hmOpts
];
};
@ -103,7 +104,7 @@ let
"${self}/nix/home/_"
"${self}/nix/home/${name}"
nixpkgsRegistry
substituters
extra-substituters
hmOpts
];
}