Files
nix/modules/nix-settings.nix
Artem Sheremet ad2baea578 Revert nixpkgs path manipulation
It doesn't work with modern nix restrictions, and it also didn't quite
help the situation with "copying ... source".

This reverts commit 2abb541c71.
2026-03-28 20:31:10 +00:00

16 lines
287 B
Nix

_: {
nix.settings = {
extra-experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
# RPi builds can be slow due to compiling via binfmt.
download-buffer-size = 1 * 1024 * 1024 * 1024;
};
}