mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
add(nix): share substituters across hosts
This commit is contained in:
parent
3f367b60f9
commit
f4d027ca72
5 changed files with 21 additions and 23 deletions
3
nix/hosts/_/default.nix
Normal file
3
nix/hosts/_/default.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
imports = [./substituters.nix];
|
||||
}
|
||||
14
nix/hosts/_/substituters.nix
Normal file
14
nix/hosts/_/substituters.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
nix.settings = {
|
||||
trusted-substituters = [
|
||||
"https://app.cachix.org/cache/leana8959"
|
||||
"https://nix-community.cachix.org"
|
||||
"https://llama-cpp.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"leana8959.cachix.org-1:0kiyNv2RiR04ldLZRRm7EC3+4slPi364bX8JKzwpv6A="
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc="
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue