16 lines
286 B
Nix
16 lines
286 B
Nix
# NixOps configuration for the hosts utilising IOHK resources
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
nix.binaryCaches = [
|
|
"https://cache.nixos.org"
|
|
"https://hydra.iohk.io"
|
|
];
|
|
nix.binaryCachePublicKeys = [
|
|
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
|
|
];
|
|
|
|
}
|