Remove all traces of tailscale

This commit is contained in:
SebastianStork 2026-01-11 00:17:51 +01:00
parent ccac4395a2
commit 3cf75dc7e1
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
11 changed files with 19 additions and 127 deletions

View file

@ -1,16 +0,0 @@
{ config, lib, ... }@moduleArgs:
{
options.custom.services.tailscale.enable = lib.mkEnableOption "" // {
default = moduleArgs.osConfig.custom.services.tailscale.enable or false;
};
config = lib.mkIf config.custom.services.tailscale.enable {
programs.ssh = {
enable = true;
matchBlocks.installer.extraOptions = {
UserKnownHostsFile = "/dev/null";
StrictHostKeyChecking = "no";
};
};
};
}