16 lines
454 B
Nix
16 lines
454 B
Nix
|
{ ... }: {
|
||
|
nix.settings = {
|
||
|
substituters = [
|
||
|
"https://devenv.cachix.org"
|
||
|
"https://nix-community.cachix.org/"
|
||
|
];
|
||
|
trusted-public-keys = [
|
||
|
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
|
||
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||
|
];
|
||
|
auto-optimise-store = true;
|
||
|
experimental-features = [ "nix-command" "flakes" ];
|
||
|
};
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
}
|