tailscale: Added additional DNS entries

This commit is contained in:
Giulio De Pasquale 2023-02-08 08:41:59 +01:00
parent b191ea3f42
commit dc8aa8406f

View File

@ -2,9 +2,9 @@
let let
network = import ./network.nix; network = import ./network.nix;
auth_block = (import ./openid.nix { inherit lib; }).openresty_oidc_block;
ifname = "ts0"; ifname = "ts0";
in rec { in {
services = { services = {
tailscale = { tailscale = {
enable = true; enable = true;
@ -14,5 +14,8 @@ in rec {
networking.extraHosts = '' networking.extraHosts = ''
${network.architect-ts} architect.devs.giugl.io ${network.architect-ts} architect.devs.giugl.io
${network.giuliopc-ts} kmerr.devs.giugl.io
${network.dodino-ts} dodino.devs.giugl.io
${network.giuliophone-ts} chuck.devs.giugl.io
''; '';
} }