Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,14 @@ in
"flakes"
];
nix.settings.download-buffer-size = 268435456; # 256 MiB; quiets the "buffer full" warning on big closure pulls

# Extra binary cache: pull community-built closures (disko and other
# nix-community derivations) instead of building them locally. `extra-`
# appends to the defaults, so cache.nixos.org stays in place.
nix.settings.extra-substituters = [ "https://nix-community.cachix.org" ];
nix.settings.extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
networking.firewall.enable = false;

# ── PostgreSQL ────────────────────────────────────────────────────────────
Expand Down
Loading