feat(desktop): enable community cache.

This commit is contained in:
CronyAkatsuki 2025-06-22 22:02:34 +02:00
parent e68ce48e25
commit ea224acf7c

View file

@ -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;