1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/tmate.nix

81 lines
2.2 KiB
Nix
Raw Normal View History

2022-09-21 22:59:50 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.tmate;
in {
meta.maintainers = [ maintainers.jlesquembre ];
options = {
programs.tmate = {
enable = mkEnableOption "tmate";
2022-09-21 22:59:50 +02:00
package = mkOption {
type = types.package;
default = pkgs.tmate;
defaultText = literalExpression "pkgs.tmate";
example = literalExpression "pkgs.tmate";
description = "The tmate package to install.";
2022-09-21 22:59:50 +02:00
};
host = mkOption {
type = with types; nullOr str;
default = null;
example = literalExpression "tmate.io";
description = "Tmate server address.";
2022-09-21 22:59:50 +02:00
};
port = mkOption {
type = with types; nullOr port;
default = null;
example = 2222;
description = "Tmate server port.";
2022-09-21 22:59:50 +02:00
};
dsaFingerprint = mkOption {
type = with types; nullOr str;
2022-09-21 22:59:50 +02:00
default = null;
example = literalExpression
"SHA256:1111111111111111111111111111111111111111111";
description = "Tmate server EdDSA key fingerprint.";
2022-09-21 22:59:50 +02:00
};
rsaFingerprint = mkOption {
type = with types; nullOr str;
2022-09-21 22:59:50 +02:00
default = null;
example = literalExpression
"SHA256:1111111111111111111111111111111111111111111";
description = "Tmate server RSA key fingerprint.";
2022-09-21 22:59:50 +02:00
};
extraConfig = mkOption {
type = types.lines;
default = "";
description = ''
2022-09-21 22:59:50 +02:00
Additional content written at the end of
{file}`~/.tmate.conf`.
2022-09-21 22:59:50 +02:00
'';
};
};
};
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
home.file.".tmate.conf" = let
2022-09-21 22:59:50 +02:00
conf =
optional (cfg.host != null) ''set -g tmate-server-host "${cfg.host}"''
++ optional (cfg.port != null)
"set -g tmate-server-port ${builtins.toString cfg.port}"
++ optional (cfg.dsaFingerprint != null)
''set -g tmate-server-ed25519-fingerprint "${cfg.dsaFingerprint}"''
++ optional (cfg.rsaFingerprint != null)
''set -g tmate-server-rsa-fingerprint "${cfg.rsaFingerprint}"''
++ optional (cfg.extraConfig != "") cfg.extraConfig;
in mkIf (conf != [ ]) { text = concatLines conf; };
2022-09-21 22:59:50 +02:00
};
}