From 3fc08793fe000a8b0d74cd906341428881a93a4f Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 26 Apr 2026 19:04:01 -0500 Subject: [PATCH] enabled tailscale ssh block --- modules/hosts/john-pc/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/hosts/john-pc/default.nix b/modules/hosts/john-pc/default.nix index bf158f4..906ecd9 100644 --- a/modules/hosts/john-pc/default.nix +++ b/modules/hosts/john-pc/default.nix @@ -64,6 +64,7 @@ in appdaemon = true; homelab = true; dev = true; + tailscale = true; }; }; @@ -103,8 +104,12 @@ in }; }; - flake.homeConfigurations."john@john-pc-ubuntu" = withSystem "x86_64-linux" (ctx@{ config, inputs', ...}: + flake.homeConfigurations."john@john-pc-ubuntu" = withSystem "x86_64-linux" (ctx@{ system, inputs', ... }: inputs.home-manager.lib.homeManagerConfiguration { + # pkgs = import inputs.nixpkgs { + # inherit system; + # overlays = [ inputs.self.overlays.default ]; + # }; pkgs = inputs'.nixpkgs.legacyPackages; modules = [ inputs.self.modules.homeManager."${hostname}" ]; });