diff --git a/modules/common.nix b/modules/common.nix index 5a0235a..ad52721 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -53,7 +53,7 @@ in { inherit (value) publicKey; extraHostNames = [ value.targetHost ]; }) meta.hosts; - bash.enableCompletion = true; + bash.completion.enable = true; mosh.enable = true; }; services.tailscale = { @@ -185,10 +185,10 @@ in { IPv6SendRA = true; }; addresses = [ - { addressConfig.Address = "10.0.0.1/24"; } - { addressConfig.Address = "fd12:3456:789a::1/64"; } + { Address = "10.0.0.1/24"; } + { Address = "fd12:3456:789a::1/64"; } ]; - ipv6Prefixes = [{ ipv6PrefixConfig.Prefix = "fd12:3456:789a::/64"; }]; + ipv6Prefixes = [{ Prefix = "fd12:3456:789a::/64"; }]; }; networks.microvm-eth0 = { matchConfig.Name = "vm-*";