enabled tailscale ssh block

This commit is contained in:
John Lancaster
2026-04-26 19:04:01 -05:00
parent 7f4fdcf4b9
commit 3fc08793fe
+6 -1
View File
@@ -64,6 +64,7 @@ in
appdaemon = true; appdaemon = true;
homelab = true; homelab = true;
dev = 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 { inputs.home-manager.lib.homeManagerConfiguration {
# pkgs = import inputs.nixpkgs {
# inherit system;
# overlays = [ inputs.self.overlays.default ];
# };
pkgs = inputs'.nixpkgs.legacyPackages; pkgs = inputs'.nixpkgs.legacyPackages;
modules = [ inputs.self.modules.homeManager."${hostname}" ]; modules = [ inputs.self.modules.homeManager."${hostname}" ];
}); });