Make sparky a NFS backup instead of desktop.

This commit is contained in:
2025-10-31 15:41:12 +00:00
parent 5b3b4ea2ed
commit 283cf9d614
2 changed files with 8 additions and 6 deletions

View File

@@ -3,9 +3,10 @@
imports = [
../../common/encrypted-btrfs-layout.nix
../../common/global
../../common/desktop-node.nix # Hyprland + GUI environment
../../common/cluster-member.nix # Consul + storage clients
../../common/cluster-tools.nix # Nomad CLI (no service)
../../common/cluster-member.nix
../../common/cluster-tools.nix
../../common/nomad-worker.nix
../../nfs-services-standby.nix
./hardware.nix
];

View File

@@ -6,7 +6,6 @@
../../common/cluster-member.nix # Consul + storage clients
../../common/nomad-worker.nix # Nomad client (runs jobs)
# NOTE: zippy is NOT a server - no nomad-server.nix import
# ../../common/ethereum.nix
../../common/nfs-services-server.nix # NFS server for /data/services
# To move NFS server role to another host:
# 1. Follow procedure in docs/NFS_FAILOVER.md
@@ -24,6 +23,8 @@
networking.hostName = "zippy";
services.tailscaleAutoconnect.authkey = "tskey-auth-ktKyQ59f2p11CNTRL-ut8E71dLWPXsVtb92hevNX9RTjmk4owBf";
# NFS server configuration: replicate to c1 as standby
nfsServicesServer.standbys = [ "c1" ];
nfsServicesServer.standbys = [
"c1"
"sparky"
];
}