nixcfg/cluster/staging/node/cariacou.nix

30 lines
651 B
Nix
Raw Normal View History

2021-11-01 21:56:32 +00:00
# Configuration file local to this node
{ config, pkgs, ... }:
{
2021-11-18 13:38:48 +00:00
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.timeout = 20;
boot.loader.efi.canTouchEfiVariables = true;
2021-11-02 09:15:37 +00:00
networking.hostName = "cariacou";
2021-11-01 21:56:32 +00:00
deuxfleurs.network_interface = "eno1";
deuxfleurs.lan_ip = "192.168.1.21";
2021-12-13 10:30:41 +00:00
networking.interfaces.eno1.ipv6.addresses = [
{
address = "2a01:e0a:c:a720::21";
prefixLength = 64;
}
];
2021-11-16 16:39:23 +00:00
2022-02-09 14:38:36 +00:00
deuxfleurs.vpn_ip = "10.42.2.21";
deuxfleurs.vpn_listen_port = 33721;
deuxfleurs.is_raft_server = true;
2021-11-18 13:38:48 +00:00
# Enable netdata monitoring
services.netdata.enable = true;
2021-11-01 21:56:32 +00:00
}