nixcfg/cluster/prod/node/celeri.nix

20 lines
468 B
Nix
Raw Normal View History

2022-02-09 15:38:36 +01:00
# Configuration file local to this node
{ config, pkgs, ... }:
{
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.timeout = 20;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "celeri";
2022-10-18 15:44:15 +02:00
deuxfleurs.network_interface = "enp0s31f6";
deuxfleurs.lan_ip = "192.168.1.33";
2022-10-16 19:10:51 +02:00
deuxfleurs.ipv6 = "2001:910:1204:1::33";
deuxfleurs.cluster_ip = "10.83.1.3";
2022-10-16 15:13:17 +02:00
deuxfleurs.is_raft_server = false;
2022-02-09 15:38:36 +01:00
}