1
0
Fork 0

sail: Enable custom cache

This commit is contained in:
Daniel Kempkens 2022-08-09 19:14:22 +02:00
parent 0468835053
commit 82af968372
3 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,8 @@
{ pkgs, ... }:
args@{ pkgs, ... }:
let
secret = import ../../secret/hosts/sail.nix;
in
{
imports = [
../programs/fish.nix
@ -11,6 +14,8 @@
../programs/bat.nix
(import ../programs/custom-nix-cache.nix (args // { inherit secret; }))
../programs/fzf.nix
../programs/jq.nix

Binary file not shown.

View file

@ -1,6 +1,8 @@
args@{ pkgs, ... }:
let
inherit (lib) optionals;
secret = import ../../secret/hosts/sail.nix;
ssh-keys = import ../shared/ssh-keys.nix;
in
@ -25,11 +27,15 @@ in
substituters = [
"https://nix-community.cachix.org"
"https://nifoc.cachix.org"
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.s3Url
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nifoc.cachix.org-1:ymuftq7RgN/lf/iWXFK8gpwDSAGFaGBeliWe9u6q8II="
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.publicKeyValue
];
};