Compare commits

...

2 commits

Author SHA1 Message Date
fb520a417c Use caches 2025-04-16 20:03:49 -04:00
cac73262dc add self as trusted user 2025-04-16 20:03:43 -04:00
2 changed files with 14 additions and 0 deletions

View file

@ -27,4 +27,16 @@
system.stateVersion = "24.11";
nixpkgs.config.allowUnfree = true;
# Caches
nix.settings = {
trusted-public-keys = [
"nix-cache.stranger.systems:DrIF2T1eqAsxWQIz/HvjO7TxtcJwpg0nMAbPfndvvzw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
substituters = [
"https://nix-cache.stranger.systems"
"https://nix-community.cachix.org"
];
};
}

View file

@ -31,4 +31,6 @@
];
};
};
nix.settings.trusted-users = ["nathan"];
}