about summary refs log blame commit diff
path: root/users/glittershark/system/system/modules/tvl.nix
blob: 5291532338af918a15e60bbcd3b43630185f4505 (plain) (tree)
1
2
3
4


                           
         










                                                                  
    



                                                             
                                                                                      


       
{ config, lib, pkgs, ... }:

{
  nix = {
    binaryCaches = [
      "ssh://nix-ssh@whitby.tvl.fyi"
      "https://cache.nixos.org"
    ];
    trustedBinaryCaches = [
      "ssh://nix-ssh@whitby.tvl.fyi"
      "https://cache.nixos.org"
    ];
    binaryCachePublicKeys = [
      "cache.tvl.fyi:fd+9d1ceCPvDX/xVhcfv8nAa6njEhAGAEe+oGJDEeoc="
    ];
  };

  programs.ssh.knownHosts.whitby = {
    hostNames = [ "whitby" "whitby.tvl.fyi" "49.12.129.211"];
    publicKeyFile = pkgs.writeText "whitby.pub" ''
      ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILNh/w4BSKov0jdz3gKBc98tpoLta5bb87fQXWBhAl2I
    '';
  };
}