feat: base: +cache

This commit is contained in:
2026-06-06 11:04:13 +00:00
parent 592d1f04c5
commit ad6c5ab803
+10 -2
View File
@@ -1,7 +1,7 @@
{
inputs,
flake,
self,
...
}: {
pkgs,
lib,
@@ -27,7 +27,15 @@ in {
users.defaultUserShell = pkgs.zsh;
# Enable flakes and new 'nix' command
nix.settings.experimental-features = "nix-command flakes";
nix.settings = {
experimental-features = "nix-command flakes";
extra-substituters = [
"https://cache.hectic-lab.com/hectic"
];
extra-trusted-public-keys = [
"hectic:KMQsKow4SoA9K2vOJlOljmx7/Zpf91Yy+5qEtxDDCzA="
];
};
networking.firewall.enable = true;