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}" ]; });