summary refs log tree commit diff
path: root/modules/extra-substituters.nix
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-01-23 13:27:59 +0100
committerRory& <root@rory.gay>2026-01-23 13:27:59 +0100
commit20b74076898028eeb26e7496c942ae12e464e8cc (patch)
tree2db8dfdaf71e6b1ba19617807b57878386e6fba3 /modules/extra-substituters.nix
downloadSpacebarContainerRepro-master.tar.xz
initial commit HEAD master
Diffstat (limited to 'modules/extra-substituters.nix')
-rw-r--r--modules/extra-substituters.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/extra-substituters.nix b/modules/extra-substituters.nix
new file mode 100644

index 0000000..35efcb7 --- /dev/null +++ b/modules/extra-substituters.nix
@@ -0,0 +1,16 @@ +{ ... }: + +{ + nix.settings.trusted-substituters = [ + "https://nix-community.cachix.org" + "https://cache.garnix.io" + "https://numtide.cachix.org" + ]; + + nix.settings.trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + "numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE=" + ]; + +}