feat: move immich to remote machine

This commit is contained in:
uttarayan21
2025-07-27 20:14:57 +05:30
parent 4a42fe9afa
commit 4c7b098104
5 changed files with 11 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
./prowlarr.nix ./prowlarr.nix
./flaresolverr.nix ./flaresolverr.nix
./searxng.nix ./searxng.nix
./immich.nix
# ./home-assistant.nix # ./home-assistant.nix
# ./jellyfin.nix # ./jellyfin.nix

View File

@@ -145,6 +145,14 @@
} }
]; ];
} }
{
"Tailscale" = [
{
abbr = "ts";
href = "https://login.tailscale.com";
}
];
}
]; ];
} }
]; ];

View File

@@ -8,7 +8,6 @@
./deluge.nix ./deluge.nix
./homeassistant.nix ./homeassistant.nix
./flaresolverr.nix ./flaresolverr.nix
./immich.nix
# ./dnscrypt.nix # ./dnscrypt.nix
# ./resolved.nix # ./resolved.nix
# ./blocky.nix # ./blocky.nix

View File

@@ -1,22 +1,10 @@
{ {unstablePkgs, ...}: {
pkgs,
lib,
...
}: {
services = { services = {
tailscale = { tailscale = {
enable = true; enable = true;
# useRoutingFeatures = "both"; # useRoutingFeatures = "both";
# extraUpFlags = ["--advertise-routes=192.168.0.0/24"]; # 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
# '';
# };
# };
}; };
} }