Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set up misaki as binary cache

+8 -2
+8 -2
common.nix
··· 25 25 nix.gc.automatic = true; 26 26 nix.gc.options = "--delete-older-than 8d"; 27 27 nix.settings = { 28 - substituters = [ "https://tranquil.cachix.org" ]; 29 - trusted-public-keys = [ "tranquil.cachix.org-1:PoO+mGL6a6LcJiPakMDHN4E218/ei/7v2sxeDtNkSRg=" ]; 28 + substituters = [ 29 + "https://tranquil.cachix.org" 30 + "https://cache.ngp.computer" 31 + ]; 32 + trusted-public-keys = [ 33 + "tranquil.cachix.org-1:PoO+mGL6a6LcJiPakMDHN4E218/ei/7v2sxeDtNkSRg=" 34 + "misaki.packetlost.dev:y5Z/utaVBozpL0UAbUQDWLjpm2sVMOoKzyG76n/167A=" 35 + ]; 30 36 trusted-users = [ "@wheel" ]; 31 37 }; 32 38