Keep kbot, Plasma/SDDM, NetworkManager, systemd-boot and the installed storage while adding dev/Hyprland as a separate physical host target. Keep EC2 integration and its updater isolated. Include WireGuard/OpenVPN clients, NetworkManager OpenVPN integration and network diagnostics; add recovery checks and activation instructions.
32 lines
837 B
Nix
32 lines
837 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
# Keep each host's existing interface/DHCP owner. On EC2 this is dhcpcd;
|
|
# NixOS wires its resolvconf hook to resolved's compatibility interface.
|
|
services.resolved = {
|
|
# Physical hosts can retain their existing DNS setup during migration.
|
|
enable = lib.mkDefault true;
|
|
settings.Resolve = {
|
|
LLMNR = false;
|
|
MulticastDNS = false;
|
|
# Do not force public DNS, DNSSEC or DNS-over-TLS over DHCP/VPN policy.
|
|
};
|
|
};
|
|
|
|
programs.mtr.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
wireguard-tools # wg and wg-quick; no interfaces or credentials are configured.
|
|
openvpn
|
|
iperf3
|
|
nmap
|
|
traceroute
|
|
whois
|
|
dnsutils
|
|
tcpdump
|
|
ethtool
|
|
netcat-openbsd
|
|
socat
|
|
];
|
|
# Client tools only: no VPN services, peers, keys, routes or firewall ports.
|
|
}
|