Files
nixconfig/configuration.nix
T
OpenAI Coding Assistant ad39155705 feat: add recovery-safe physical host and VPN tools
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.
2026-09-05 22:02:50 -05:00

14 lines
414 B
Nix

# EC2 only. Physical machines must use the separate nixos host target.
{ modulesPath, ... }:
{
imports = [
# Keep the image's EC2 boot, storage, metadata, SSH and SSM integration.
"${modulesPath}/virtualisation/amazon-image.nix"
./common.nix
./updates.nix
];
# Only the EC2 host keeps its dev-owned configuration checkout here.
systemd.tmpfiles.rules = [ "Z /etc/nixos - dev users -" ];
}