Set up homes and systems to use cache
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 14m11s

This commit is contained in:
2023-11-17 22:57:44 +00:00
parent 5766bdda99
commit 38e7251300
5 changed files with 25 additions and 21 deletions

View File

@@ -235,12 +235,9 @@ in
exact = true;
};
};
settings = {
substituters = [
#"https://nix-cache.nul.ie"
"https://cache.nixos.org"
];
trusted-public-keys = lib.my.c.nix.cacheKeys;
settings = with lib.my.c.nix; {
extra-substituters = cache.substituters;
extra-trusted-public-keys = cache.keys;
};
};
})