You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
{ lib, ... }:
|
|
|
|
let
|
|
|
|
mirrors = {
|
|
|
|
# "https://android.googlesource.com" = "/mnt/aospaosp/mirror";
|
|
|
|
# "https://github.com/LineageOS" = "/var/lib/src/lineageos/LineageOS";
|
|
|
|
# "https://github.com/TheMuppets" = "/var/lib/src/themuppets/TheMuppets";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
nix.envVars.ROBOTNIX_GIT_MIRRORS = lib.concatStringsSep "|" (lib.mapAttrsToList (local: remote: "${local}=${remote}") mirrors);
|
|
|
|
|
|
|
|
# Also add local mirrors to nix sandbox exceptions
|
|
|
|
nix.sandboxPaths = lib.attrValues mirrors;
|
|
|
|
}
|