remote-builds: WIP

This commit is contained in:
Geoffrey Frogeye 2024-04-10 01:05:38 +02:00
parent 96ddd61320
commit b7d8797a6d
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 16 additions and 0 deletions

View file

@ -12,6 +12,7 @@
./gaming
./geoffrey.nix
./printing
./remote-builds
./style
./wireless
];

View file

@ -0,0 +1,15 @@
{ pkgs, lib, config, ... }:
let
publicKeys = [
"abavorana.frogeye.fr:rcKZ9gwaIQLcst/vbhbF7meUQD5sveT2QQN4a+Zo1BM="
"ludwig.clowncar.frogeye.fr:jTlN0fCOLU49M3LQw5j/u++Gmwrsv3m9RGs0slSg6r0="
];
# MANU pass vivarium/lemmy/remote-builds/cache | nix key convert-secret-to-public | cat
in
{
config = {
nix.settings = {
trusted-public-keys = publicKeys;
};
};
}