feat(desktop): enable community cache.
This commit is contained in:
parent
e68ce48e25
commit
ea224acf7c
1 changed files with 10 additions and 0 deletions
|
@ -132,6 +132,16 @@
|
|||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Setup community cache
|
||||
nix.settings = {
|
||||
substituters = [
|
||||
"https://nix-community.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
};
|
||||
|
||||
# Optimise storage
|
||||
nix.optimise = {
|
||||
automatic = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue