26 lines
388 B
Nix
26 lines
388 B
Nix
|
_:
|
||
|
|
||
|
{
|
||
|
nix = {
|
||
|
extraOptions = ''
|
||
|
experimental-features = nix-command flakes
|
||
|
'';
|
||
|
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
};
|
||
|
|
||
|
settings = {
|
||
|
auto-optimise-store = true;
|
||
|
|
||
|
substituters = [
|
||
|
"https://walkah.cachix.org"
|
||
|
];
|
||
|
|
||
|
trusted-public-keys = [
|
||
|
"walkah.cachix.org-1:D8cO78JoJC6UPV1ZMgd1V5znpk3jNUERGIeAKN15hxo="
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|