nixcfg/node/cariacou.nix

25 lines
499 B
Nix
Raw Normal View History

2021-11-01 21:56:32 +00:00
# Configuration file local to this node
{ config, pkgs, ... }:
{
networking.hostName = "cariacou"; # Define your hostname.
networking.interfaces.eno1.useDHCP = false;
networking.interfaces.eno1.ipv4.addresses = [
{
address = "192.168.1.21";
prefixLength = 24;
}
];
nix = {
binaryCaches = [
"http://binarycache.home.adnab.me"
];
binaryCachePublicKeys = [
"binarycache.home.adnab.me:ErR6pMnewf9oVyZJd5uC2nI4EZF49c7Mh86eDZWYZaw="
];
};
}