diff --git a/hosts/sparky/default.nix b/hosts/sparky/default.nix index 54e71f6..2ca89ff 100644 --- a/hosts/sparky/default.nix +++ b/hosts/sparky/default.nix @@ -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 ]; diff --git a/hosts/zippy/default.nix b/hosts/zippy/default.nix index abd373a..808169f 100644 --- a/hosts/zippy/default.nix +++ b/hosts/zippy/default.nix @@ -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" + ]; }