hosts: steamdeck: add hydraCache

This commit is contained in:
Kabbone 2024-05-26 09:14:01 +02:00
parent 0249d17ac1
commit e02e66a4bb
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 17 additions and 1 deletions

View File

@ -85,7 +85,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-finished"
];
};
};
}