diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 12def3d0da87..2bcf6e8dee31 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -891,6 +891,7 @@
./services/networking/tcpcrypt.nix
./services/networking/teamspeak3.nix
./services/networking/tedicross.nix
+ ./services/networking/teleport.nix
./services/networking/thelounge.nix
./services/networking/tinc.nix
./services/networking/tinydns.nix
diff --git a/nixos/modules/services/networking/teleport.nix b/nixos/modules/services/networking/teleport.nix
new file mode 100644
index 000000000000..d5f44f5a7823
--- /dev/null
+++ b/nixos/modules/services/networking/teleport.nix
@@ -0,0 +1,98 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+ cfg = config.services.teleport;
+ settingsYaml = pkgs.formats.yaml { };
+in
+{
+ options = {
+ services.teleport = with lib.types; {
+ enable = mkEnableOption "the Teleport service";
+
+ settings = mkOption {
+ type = settingsYaml.type;
+ default = { };
+ example = literalExpression ''
+ {
+ teleport = {
+ nodename = "client";
+ advertise_ip = "192.168.1.2";
+ auth_token = "60bdc117-8ff4-478d-95e4-9914597847eb";
+ auth_servers = [ "192.168.1.1:3025" ];
+ log.severity = "DEBUG";
+ ssh_service = {
+ enabled = true;
+ labels = {
+ role = "client";
+ };
+ };
+ proxy_service.enabled = false;
+ auth_service.enabled = false;
+ }
+ '';
+ description = ''
+ Contents of the teleport.yaml config file.
+ The --config arguments will only be passed if this set is not empty.
+
+ See .
+ '';
+ };
+
+ insecure.enable = mkEnableOption ''
+ starting teleport in insecure mode.
+
+ This is dangerous!
+ Sensitive information will be logged to console and certificates will not be verified.
+ Proceed with caution!
+
+ Teleport starts with disabled certificate validation on Proxy Service, validation still occurs on Auth Service
+ '';
+
+ diag = {
+ enable = mkEnableOption ''
+ endpoints for monitoring purposes.
+
+ See
+ '';
+
+ addr = mkOption {
+ type = str;
+ default = "127.0.0.1";
+ description = "Metrics and diagnostics address.";
+ };
+
+ port = mkOption {
+ type = int;
+ default = 3000;
+ description = "Metrics and diagnostics port.";
+ };
+ };
+ };
+ };
+
+ config = mkIf config.services.teleport.enable {
+ environment.systemPackages = [ pkgs.teleport ];
+
+ systemd.services.teleport = {
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+ serviceConfig = {
+ ExecStart = ''
+ ${pkgs.teleport}/bin/teleport start \
+ ${optionalString cfg.insecure.enable "--insecure"} \
+ ${optionalString cfg.diag.enable "--diag-addr=${cfg.diag.addr}:${toString cfg.diag.port}"} \
+ ${optionalString (cfg.settings != { }) "--config=${settingsYaml.generate "teleport.yaml" cfg.settings}"}
+ '';
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ LimitNOFILE = 65536;
+ Restart = "always";
+ RestartSec = "5s";
+ RuntimeDirectory = "teleport";
+ Type = "simple";
+ };
+ };
+ };
+}
+