this repo has no description
nix
at main 41 lines 769 B view raw
1let 2 substituters = [ 3 "https://nix-community.cachix.org" 4 ]; 5 6 trusted-public-keys = [ 7 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 8 ]; 9 10 extra-home-substituters = [ 11 "https://cache.nixos.org" 12 ]; 13 14 extra-home-trusted-public-keys = [ 15 "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" 16 ]; 17 18 settings = { 19 inherit substituters trusted-public-keys; 20 }; 21 22 homeSettings = { 23 substituters = substituters ++ extra-home-substituters; 24 trusted-public-keys = trusted-public-keys ++ extra-home-trusted-public-keys; 25 }; 26in 27{ 28 den.default = { 29 os = { 30 nix = { 31 inherit settings; 32 }; 33 }; 34 35 homeManager = { 36 nix = { 37 settings = homeSettings; 38 }; 39 }; 40 }; 41}