nix-config/lib/hq.nix

16 lines
339 B
Nix
Raw Normal View History

{ config, ... }:
2019-07-02 21:11:32 +02:00
{
networking.domain = "hq.c3d2.de";
nix = if config.networking.hostName == "hydra" then
{ }
else {
binaryCaches = [ "https://nix-serve.hq.c3d2.de" ];
binaryCachePublicKeys =
[ "nix-serve.hq.c3d2.de:FEi9GyFkou1Ua8INaEKmuGaww9E5y3XwrNGNRfKYeLo=" ];
2019-07-02 21:11:32 +02:00
};
users.motd = builtins.readFile ./motd;
2019-07-02 21:11:32 +02:00
}