From 258b8e1fdf22fae83e87e4b56c1467057af9f934 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Mon, 5 Aug 2024 07:47:20 +0100 Subject: [PATCH] Workaround for chilly eth interface name being different. --- hosts/chilly/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/chilly/default.nix b/hosts/chilly/default.nix index afd1049..7e42575 100644 --- a/hosts/chilly/default.nix +++ b/hosts/chilly/default.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: +{ lib, pkgs, inputs, ... }: { imports = [ ../../common/global @@ -9,4 +9,5 @@ networking.hostName = "chilly"; services.tailscaleAutoconnect.authkey = "tskey-auth-kRXS9oPyPm11CNTRL-BE6YnbP9J6ZZuV9dHkX17ZMnm1JGdu93"; + services.consul.interface.advertise = lib.mkForce "enp1s0"; }