From 80edd86bb7b5dcc4006eb4859453905a8b6e2aca Mon Sep 17 00:00:00 2001 From: Ari Gato Date: Tue, 11 Jun 2024 13:51:44 +0200 Subject: [PATCH] m/common: option renames --- modules/common.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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-*";