Compare commits
No commits in common. "5c11b77e1b3762840c6cf1b533932f829e9ac20f" and "4d102da99f45ab9a65af70613464ad589000a502" have entirely different histories.
5c11b77e1b
...
4d102da99f
2 changed files with 7 additions and 2 deletions
|
|
@ -24,5 +24,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
subdomain = "hs";
|
subdomain = "hs";
|
||||||
};
|
};
|
||||||
|
settings = {
|
||||||
|
dns = {
|
||||||
|
magic_dns = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, ... }:
|
{ inputs, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.synix.nixosModules.tailscale ];
|
imports = [ inputs.synix.nixosModules.tailscale ];
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSH = true;
|
enableSSH = true;
|
||||||
acceptDNS = false; # use coredns
|
acceptDNS = !config.services.coredns.enable;
|
||||||
loginServer = "https://hs.sid.ovh";
|
loginServer = "https://hs.sid.ovh";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue