From 75ee011369abc2b04534a9cdd1fea28e10ad7335 Mon Sep 17 00:00:00 2001 From: hektor Date: Sun, 12 Apr 2026 12:00:15 +0200 Subject: [PATCH] fix: enable tailscale module on 'astyanax' host --- hosts/astyanax/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/astyanax/default.nix b/hosts/astyanax/default.nix index b8abb1fa..4a1e8fdc 100644 --- a/hosts/astyanax/default.nix +++ b/hosts/astyanax/default.nix @@ -38,6 +38,9 @@ in ../../modules/docker ../../modules/nfc ../../modules/firewall + ../../modules/tailscale + ../../modules/taskwarrior + ../../modules/yubikey ]; home-manager.users.${config.host.username} = import ../../home/hosts/astyanax { @@ -56,6 +59,8 @@ in inherit (config.host) username; nixSigningKey.enable = true; }; + + tailscale.enable = true; docker.user = config.host.username; nfc.user = config.host.username; desktop.ly.enable = true;