From cb043d3595c5344ae8904b966ee5a53caeb30aa0 Mon Sep 17 00:00:00 2001 From: Spencer Heywood Date: Wed, 16 Oct 2024 11:07:24 -0600 Subject: [PATCH] added hosts entry in vms for attic --- nixos/vm.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/vm.nix b/nixos/vm.nix index 3ebdeea..9195adb 100644 --- a/nixos/vm.nix +++ b/nixos/vm.nix @@ -13,7 +13,15 @@ boot.loader.efi.canTouchEfiVariables = false; # Enable networking - networking.networkmanager.enable = true; + networking = { + networkmanager.enable = true; + hosts = { + "100.69.64.103" = [ + "attic" + "attic.barn-banana.ts.net" + ]; + }; + }; # Set your time zone. time.timeZone = "America/Denver";