Replace static zone file with dynamically generated records: - Add homelab.dns module with enable/cnames options - Extract IPs from systemd.network configs (filters VPN interfaces) - Use git commit timestamp as zone serial number - Move external hosts to separate external-hosts.nix Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
239 B
Nix
18 lines
239 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./acme.nix
|
|
./autoupgrade.nix
|
|
./monitoring
|
|
./packages.nix
|
|
./nix.nix
|
|
./root-user.nix
|
|
./pki/root-ca.nix
|
|
./sops.nix
|
|
./sshd.nix
|
|
./vault-secrets.nix
|
|
|
|
../modules/homelab
|
|
];
|
|
}
|