Set up homes and systems to use cache
Some checks failed
CI / Check, build and cache Nix flake (push) Failing after 1m11s

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

View File

@@ -47,9 +47,11 @@ in
nix = {
package = mkIf (!(versionAtLeast config.home.stateVersion "22.11")) pkgs.nix;
settings = {
settings = with lib.my.c.nix; {
experimental-features = [ "nix-command" "flakes" "ca-derivations" ];
max-jobs = mkDefault "auto";
extra-substituters = cache.substituters;
extra-trusted-public-keys = cache.keys;
};
};