nixcfg/node/carcajou.nix

16 lines
274 B
Nix
Raw Normal View History

2021-11-01 21:56:32 +00:00
# Configuration file local to this node
{ config, pkgs, ... }:
{
2021-11-02 09:15:37 +00:00
networking.hostName = "carcajou";
2021-11-01 21:56:32 +00:00
networking.interfaces.eno1.useDHCP = false;
networking.interfaces.eno1.ipv4.addresses = [
{
address = "192.168.1.22";
prefixLength = 24;
}
];
}