diff --git a/nixos/mirai/services/default.nix b/nixos/mirai/services/default.nix index 1b0b7d89..07e83caf 100644 --- a/nixos/mirai/services/default.nix +++ b/nixos/mirai/services/default.nix @@ -13,6 +13,7 @@ ./prowlarr.nix ./flaresolverr.nix ./searxng.nix + ./immich.nix # ./home-assistant.nix # ./jellyfin.nix diff --git a/nixos/mirai/services/homepage.nix b/nixos/mirai/services/homepage.nix index b50e2259..ca5ae6bf 100644 --- a/nixos/mirai/services/homepage.nix +++ b/nixos/mirai/services/homepage.nix @@ -145,6 +145,14 @@ } ]; } + { + "Tailscale" = [ + { + abbr = "ts"; + href = "https://login.tailscale.com"; + } + ]; + } ]; } ]; diff --git a/nixos/tsuba/services/immich.nix b/nixos/mirai/services/immich.nix similarity index 100% rename from nixos/tsuba/services/immich.nix rename to nixos/mirai/services/immich.nix diff --git a/nixos/tsuba/services/default.nix b/nixos/tsuba/services/default.nix index 78c85f40..478d2795 100644 --- a/nixos/tsuba/services/default.nix +++ b/nixos/tsuba/services/default.nix @@ -8,7 +8,6 @@ ./deluge.nix ./homeassistant.nix ./flaresolverr.nix - ./immich.nix # ./dnscrypt.nix # ./resolved.nix # ./blocky.nix diff --git a/nixos/tsuba/services/tailscale.nix b/nixos/tsuba/services/tailscale.nix index 3ce346d7..8ea4652c 100644 --- a/nixos/tsuba/services/tailscale.nix +++ b/nixos/tsuba/services/tailscale.nix @@ -1,22 +1,10 @@ -{ - pkgs, - lib, - ... -}: { +{unstablePkgs, ...}: { services = { tailscale = { enable = true; # useRoutingFeatures = "both"; # extraUpFlags = ["--advertise-routes=192.168.0.0/24"]; + package = unstablePkgs.tailscale; }; - # networkd-dispatcher = { - # enable = true; - # rules."50-tailscale" = { - # onState = ["routable"]; - # script = '' - # ${lib.getExe pkgs.ethtool} -K en01 rx-udp-gro-forwarding on rg-xgro-list off - # ''; - # }; - # }; }; }