aboutsummaryrefslogtreecommitdiff
path: root/os/host_TOREWORK/cluster/staging/node/cariacou.nix
diff options
context:
space:
mode:
Diffstat (limited to 'os/host_TOREWORK/cluster/staging/node/cariacou.nix')
-rw-r--r--os/host_TOREWORK/cluster/staging/node/cariacou.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/os/host_TOREWORK/cluster/staging/node/cariacou.nix b/os/host_TOREWORK/cluster/staging/node/cariacou.nix
new file mode 100644
index 0000000..14d1842
--- /dev/null
+++ b/os/host_TOREWORK/cluster/staging/node/cariacou.nix
@@ -0,0 +1,27 @@
+# Configuration file local to this node
+
+{ config, pkgs, ... }:
+
+{
+ imports =
+ [
+ ./remote-unlock.nix
+ ];
+
+ # Use the systemd-boot EFI boot loader.
+ boot.loader.systemd-boot.enable = true;
+ boot.loader.timeout = 20;
+ boot.loader.efi.canTouchEfiVariables = true;
+
+ networking.hostName = "cariacou";
+
+ deuxfleurs.network_interface = "eno1";
+ deuxfleurs.lan_ip = "192.168.1.21";
+ deuxfleurs.ipv6 = "2a01:e0a:c:a720::21";
+
+ deuxfleurs.cluster_ip = "10.14.179.56";
+ deuxfleurs.is_raft_server = true;
+
+ # Enable netdata monitoring
+ services.netdata.enable = true;
+}