From d67190d175eed1196042b972c52090b54f4ccaec Mon Sep 17 00:00:00 2001 From: teutat3s Date: Wed, 7 Feb 2024 18:01:44 +0100 Subject: [PATCH] feat: init tmate-ssh-server https://tmate.io --- hosts/nachtigall/apps/tmate.nix | 9 +++++++++ hosts/nachtigall/default.nix | 1 + terraform/dns.tf | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 hosts/nachtigall/apps/tmate.nix diff --git a/hosts/nachtigall/apps/tmate.nix b/hosts/nachtigall/apps/tmate.nix new file mode 100644 index 0000000..59018d3 --- /dev/null +++ b/hosts/nachtigall/apps/tmate.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + services.tmate-ssh-server = { + enable = true; + port = 2222; + openFirewall = true; + host = "tmate.pub.solar"; + }; +} diff --git a/hosts/nachtigall/default.nix b/hosts/nachtigall/default.nix index e548482..ea60a16 100644 --- a/hosts/nachtigall/default.nix +++ b/hosts/nachtigall/default.nix @@ -29,6 +29,7 @@ ./apps/prometheus-exporters.nix ./apps/promtail.nix ./apps/searx.nix + ./apps/tmate.nix ./apps/matrix/irc.nix ./apps/matrix/mautrix-telegram.nix diff --git a/terraform/dns.tf b/terraform/dns.tf index 3798a27..60226c0 100644 --- a/terraform/dns.tf +++ b/terraform/dns.tf @@ -115,6 +115,11 @@ resource "namecheap_domain_records" "pub-solar" { type = "CNAME" address = "nachtigall.pub.solar." } + record { + hostname = "tmate" + type = "CNAME" + address = "nachtigall.pub.solar." + } record { hostname = "www" type = "CNAME"