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 = "cariacou";
|
2021-11-01 21:56:32 +00:00
|
|
|
|
|
|
|
networking.interfaces.eno1.useDHCP = false;
|
|
|
|
networking.interfaces.eno1.ipv4.addresses = [
|
|
|
|
{
|
|
|
|
address = "192.168.1.21";
|
|
|
|
prefixLength = 24;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|