services: add hydra cache and allowed uri

This commit is contained in:
Kabbone 2024-05-25 13:58:24 +02:00
parent 5524c118a9
commit c2192190a9
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 17 additions and 1 deletions

View File

@ -90,7 +90,7 @@ in
lanzaboote.nixosModules.lanzaboote
./steamdeck
./configuration_desktop.nix
../modules/hardware/remoteClient.nix
../modules/hardware/hydraCache.nix
nixos-hardware.nixosModules.common-cpu-amd
nixos-hardware.nixosModules.common-gpu-amd
nixos-hardware.nixosModules.common-pc-ssd

View File

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
nix = {
settings = {
extra-trusted-public-keys = [
"hades-builder:AFdPgi6Qq/yKqc2V2imgzMikEkVEFCrDaHyAmOJ3MII="
];
extra-trusted-substituters = [
"http://dmz.home.opel-online.de:3000/project/jovian/channel/latest"
];
};
};
}