2009-05-28 00:59:14 +01:00
|
|
|
|
# Global configuration for the SSH client.
|
|
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-05-28 00:59:14 +01:00
|
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
|
with lib;
|
2012-03-25 16:42:05 +01:00
|
|
|
|
|
2015-02-25 13:29:24 +00:00
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.programs.ssh;
|
|
|
|
|
|
2015-03-11 15:59:02 +00:00
|
|
|
|
askPassword = cfg.askPassword;
|
2015-02-25 13:29:24 +00:00
|
|
|
|
|
|
|
|
|
askPasswordWrapper = pkgs.writeScript "ssh-askpass-wrapper"
|
|
|
|
|
''
|
2018-03-01 19:38:53 +00:00
|
|
|
|
#! ${pkgs.runtimeShell} -e
|
2015-02-25 13:29:24 +00:00
|
|
|
|
export DISPLAY="$(systemctl --user show-environment | ${pkgs.gnused}/bin/sed 's/^DISPLAY=\(.*\)/\1/; t; d')"
|
2021-06-18 20:19:03 +01:00
|
|
|
|
exec ${askPassword} "$@"
|
2015-02-25 13:29:24 +00:00
|
|
|
|
'';
|
2012-03-25 16:42:05 +01:00
|
|
|
|
|
2022-01-19 13:48:41 +00:00
|
|
|
|
knownHosts = attrValues cfg.knownHosts;
|
2015-08-27 14:24:14 +01:00
|
|
|
|
|
2017-05-16 04:49:43 +01:00
|
|
|
|
knownHostsText = (flip (concatMapStringsSep "\n") knownHosts
|
2015-08-27 14:31:21 +01:00
|
|
|
|
(h: assert h.hostNames != [];
|
2019-06-19 13:14:46 +01:00
|
|
|
|
optionalString h.certAuthority "@cert-authority " + concatStringsSep "," h.hostNames + " "
|
2015-08-27 14:24:14 +01:00
|
|
|
|
+ (if h.publicKey != null then h.publicKey else readFile h.publicKeyFile)
|
2017-05-16 04:49:43 +01:00
|
|
|
|
)) + "\n";
|
2015-08-27 14:24:14 +01:00
|
|
|
|
|
2021-11-21 17:25:03 +00:00
|
|
|
|
knownHostsFiles = [ "/etc/ssh/ssh_known_hosts" "/etc/ssh/ssh_known_hosts2" ]
|
|
|
|
|
++ map pkgs.copyPathToStore cfg.knownHostsFiles;
|
|
|
|
|
|
2012-03-25 16:42:05 +01:00
|
|
|
|
in
|
2009-05-28 00:59:14 +01:00
|
|
|
|
{
|
2012-03-25 16:42:05 +01:00
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
programs.ssh = {
|
|
|
|
|
|
2021-12-11 16:13:50 +00:00
|
|
|
|
enableAskPassword = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = config.services.xserver.enable;
|
|
|
|
|
defaultText = literalExpression "config.services.xserver.enable";
|
|
|
|
|
description = "Whether to configure SSH_ASKPASS in the environment.";
|
|
|
|
|
};
|
|
|
|
|
|
2015-03-11 15:59:02 +00:00
|
|
|
|
askPassword = mkOption {
|
2015-06-15 17:18:46 +01:00
|
|
|
|
type = types.str;
|
2016-01-13 10:48:11 +00:00
|
|
|
|
default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
|
2021-10-03 17:06:03 +01:00
|
|
|
|
defaultText = literalExpression ''"''${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass"'';
|
2021-01-24 09:19:10 +00:00
|
|
|
|
description = "Program used by SSH to ask for passwords.";
|
2015-03-11 15:59:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-03-25 16:42:05 +01:00
|
|
|
|
forwardX11 = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2012-10-10 07:21:45 +01:00
|
|
|
|
default = false;
|
2012-03-25 16:42:05 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Whether to request X11 forwarding on outgoing connections by default.
|
|
|
|
|
This is useful for running graphical programs on the remote machine and have them display to your local X11 server.
|
|
|
|
|
Historically, this value has depended on the value used by the local sshd daemon, but there really isn't a relation between the two.
|
2012-11-18 19:05:18 +00:00
|
|
|
|
Note: there are some security risks to forwarding an X11 connection.
|
|
|
|
|
NixOS's X server is built with the SECURITY extension, which prevents some obvious attacks.
|
2012-10-10 07:21:45 +01:00
|
|
|
|
To enable or disable forwarding on a per-connection basis, see the -X and -x options to ssh.
|
2012-11-18 19:05:18 +00:00
|
|
|
|
The -Y option to ssh enables trusted forwarding, which bypasses the SECURITY extension.
|
2009-05-28 00:59:14 +01:00
|
|
|
|
'';
|
2012-03-25 16:42:05 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
setXAuthLocation = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2012-03-25 16:42:05 +01:00
|
|
|
|
description = ''
|
2013-10-25 14:47:30 +01:00
|
|
|
|
Whether to set the path to <command>xauth</command> for X11-forwarded connections.
|
2013-10-30 16:37:45 +00:00
|
|
|
|
This causes a dependency on X11 packages.
|
2012-03-25 16:42:05 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2013-08-25 20:54:21 +01:00
|
|
|
|
|
2018-05-17 16:03:11 +01:00
|
|
|
|
pubkeyAcceptedKeyTypes = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
2020-04-07 14:07:03 +01:00
|
|
|
|
default = [];
|
2018-05-17 16:03:11 +01:00
|
|
|
|
example = [ "ssh-ed25519" "ssh-rsa" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Specifies the key types that will be used for public key authentication.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hostKeyAlgorithms = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
2020-04-07 14:07:03 +01:00
|
|
|
|
default = [];
|
2018-05-17 16:03:11 +01:00
|
|
|
|
example = [ "ssh-ed25519" "ssh-rsa" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Specifies the host key algorithms that the client wants to use in order of preference.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2013-08-25 20:54:21 +01:00
|
|
|
|
extraConfig = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.lines;
|
2013-08-25 20:54:21 +01:00
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
2019-01-10 11:40:18 +00:00
|
|
|
|
Extra configuration text prepended to <filename>ssh_config</filename>. Other generated
|
|
|
|
|
options will be added after a <code>Host *</code> pattern.
|
2013-10-30 16:37:45 +00:00
|
|
|
|
See <citerefentry><refentrytitle>ssh_config</refentrytitle><manvolnum>5</manvolnum></citerefentry>
|
|
|
|
|
for help.
|
2013-08-25 20:54:21 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2014-04-17 23:45:26 +01:00
|
|
|
|
|
|
|
|
|
startAgent = mkOption {
|
|
|
|
|
type = types.bool;
|
2017-06-15 18:27:01 +01:00
|
|
|
|
default = false;
|
2014-04-17 23:45:26 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Whether to start the OpenSSH agent when you log in. The OpenSSH agent
|
|
|
|
|
remembers private keys for you so that you don't have to type in
|
|
|
|
|
passphrases every time you make an SSH connection. Use
|
|
|
|
|
<command>ssh-add</command> to add a key to the agent.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-13 20:46:02 +00:00
|
|
|
|
agentTimeout = mkOption {
|
2015-06-15 17:18:46 +01:00
|
|
|
|
type = types.nullOr types.str;
|
2014-12-18 14:30:14 +00:00
|
|
|
|
default = null;
|
|
|
|
|
example = "1h";
|
2014-11-13 20:46:02 +00:00
|
|
|
|
description = ''
|
2014-11-15 11:13:19 +00:00
|
|
|
|
How long to keep the private keys in memory. Use null to keep them forever.
|
2014-11-13 20:46:02 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-14 20:45:28 +01:00
|
|
|
|
agentPKCS11Whitelist = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
2021-10-03 17:06:03 +01:00
|
|
|
|
example = literalExpression ''"''${pkgs.opensc}/lib/opensc-pkcs11.so"'';
|
2019-10-14 20:45:28 +01:00
|
|
|
|
description = ''
|
|
|
|
|
A pattern-list of acceptable paths for PKCS#11 shared libraries
|
|
|
|
|
that may be used with the -s option to ssh-add.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-12 05:43:58 +01:00
|
|
|
|
package = mkOption {
|
2016-01-17 18:34:55 +00:00
|
|
|
|
type = types.package;
|
2014-09-12 05:43:58 +01:00
|
|
|
|
default = pkgs.openssh;
|
2021-10-03 17:06:03 +01:00
|
|
|
|
defaultText = literalExpression "pkgs.openssh";
|
2014-09-12 05:43:58 +01:00
|
|
|
|
description = ''
|
|
|
|
|
The package used for the openssh client and daemon.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2015-08-27 14:24:14 +01:00
|
|
|
|
knownHosts = mkOption {
|
|
|
|
|
default = {};
|
2022-01-19 14:39:50 +00:00
|
|
|
|
type = types.attrsOf (types.submodule ({ name, config, options, ... }: {
|
2015-08-27 14:29:05 +01:00
|
|
|
|
options = {
|
2019-06-19 13:14:46 +01:00
|
|
|
|
certAuthority = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
This public key is an SSH certificate authority, rather than an
|
|
|
|
|
individual host's key.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2015-08-27 14:29:05 +01:00
|
|
|
|
hostNames = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
2022-01-19 13:48:41 +00:00
|
|
|
|
default = [ name ] ++ config.extraHostNames;
|
2022-01-19 14:39:50 +00:00
|
|
|
|
defaultText = literalExpression "[ ${name} ] ++ config.${options.extraHostNames}";
|
2015-08-27 14:29:05 +01:00
|
|
|
|
description = ''
|
|
|
|
|
A list of host names and/or IP numbers used for accessing
|
2022-03-19 00:36:59 +00:00
|
|
|
|
the host's ssh service. This list includes the name of the
|
|
|
|
|
containing <literal>knownHosts</literal> attribute by default
|
|
|
|
|
for convenience. If you wish to configure multiple host keys
|
|
|
|
|
for the same host use multiple <literal>knownHosts</literal>
|
|
|
|
|
entries with different attribute names and the same
|
|
|
|
|
<literal>hostNames</literal> list.
|
2015-08-27 14:29:05 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2022-01-19 13:48:41 +00:00
|
|
|
|
extraHostNames = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = [];
|
|
|
|
|
description = ''
|
|
|
|
|
A list of additional host names and/or IP numbers used for
|
2022-03-19 00:36:59 +00:00
|
|
|
|
accessing the host's ssh service. This list is ignored if
|
|
|
|
|
<literal>hostNames</literal> is set explicitly.
|
2022-01-19 13:48:41 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
2015-08-27 14:29:05 +01:00
|
|
|
|
publicKey = mkOption {
|
|
|
|
|
default = null;
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
example = "ecdsa-sha2-nistp521 AAAAE2VjZHN...UEPg==";
|
|
|
|
|
description = ''
|
|
|
|
|
The public key data for the host. You can fetch a public key
|
|
|
|
|
from a running SSH server with the <command>ssh-keyscan</command>
|
|
|
|
|
command. The public key should not include any host names, only
|
|
|
|
|
the key type and the key itself.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
publicKeyFile = mkOption {
|
|
|
|
|
default = null;
|
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
|
description = ''
|
|
|
|
|
The path to the public key file for the host. The public
|
|
|
|
|
key file is read at build time and saved in the Nix store.
|
|
|
|
|
You can fetch a public key file from a running SSH server
|
|
|
|
|
with the <command>ssh-keyscan</command> command. The content
|
|
|
|
|
of the file should follow the same format as described for
|
2021-11-21 17:25:03 +00:00
|
|
|
|
the <literal>publicKey</literal> option. Only a single key
|
|
|
|
|
is supported. If a host has multiple keys, use
|
|
|
|
|
<option>programs.ssh.knownHostsFiles</option> instead.
|
2015-08-27 14:29:05 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2015-08-27 14:31:21 +01:00
|
|
|
|
}));
|
2015-08-27 14:24:14 +01:00
|
|
|
|
description = ''
|
2022-03-19 00:36:59 +00:00
|
|
|
|
The set of system-wide known SSH hosts. To make simple setups more
|
|
|
|
|
convenient the name of an attribute in this set is used as a host name
|
|
|
|
|
for the entry. This behaviour can be disabled by setting
|
|
|
|
|
<literal>hostNames</literal> explicitly. You can use
|
|
|
|
|
<literal>extraHostNames</literal> to add additional host names without
|
|
|
|
|
disabling this default.
|
2015-08-27 14:24:14 +01:00
|
|
|
|
'';
|
2021-10-03 17:06:03 +01:00
|
|
|
|
example = literalExpression ''
|
2019-01-18 14:31:19 +00:00
|
|
|
|
{
|
|
|
|
|
myhost = {
|
2022-01-19 13:48:41 +00:00
|
|
|
|
extraHostNames = [ "myhost.mydomain.com" "10.10.1.4" ];
|
2017-10-31 18:53:24 +00:00
|
|
|
|
publicKeyFile = ./pubkeys/myhost_ssh_host_dsa_key.pub;
|
2019-01-18 14:31:19 +00:00
|
|
|
|
};
|
2022-01-19 13:48:41 +00:00
|
|
|
|
"myhost2.net".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIRuJ8p1Fi+m6WkHV0KWnRfpM1WxoW8XAS+XvsSKsTK";
|
2022-03-19 00:36:59 +00:00
|
|
|
|
"myhost2.net/dsa" = {
|
|
|
|
|
hostNames = [ "myhost2.net" ];
|
|
|
|
|
publicKeyFile = ./pubkeys/myhost2_ssh_host_dsa_key.pub;
|
|
|
|
|
};
|
2019-01-18 14:31:19 +00:00
|
|
|
|
}
|
2016-01-17 18:34:55 +00:00
|
|
|
|
'';
|
2015-08-27 14:24:14 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-21 17:25:03 +00:00
|
|
|
|
knownHostsFiles = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = with types; listOf path;
|
|
|
|
|
description = ''
|
|
|
|
|
Files containing SSH host keys to set as global known hosts.
|
|
|
|
|
<literal>/etc/ssh/ssh_known_hosts</literal> (which is
|
|
|
|
|
generated by <option>programs.ssh.knownHosts</option>) and
|
|
|
|
|
<literal>/etc/ssh/ssh_known_hosts2</literal> are always
|
|
|
|
|
included.
|
|
|
|
|
'';
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
[
|
|
|
|
|
./known_hosts
|
|
|
|
|
(writeText "github.keys" '''
|
|
|
|
|
github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==
|
|
|
|
|
github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
|
|
|
|
|
github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
|
|
|
|
|
''')
|
|
|
|
|
]
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-22 12:41:32 +01:00
|
|
|
|
kexAlgorithms = mkOption {
|
|
|
|
|
type = types.nullOr (types.listOf types.str);
|
|
|
|
|
default = null;
|
|
|
|
|
example = [ "curve25519-sha256@libssh.org" "diffie-hellman-group-exchange-sha256" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Specifies the available KEX (Key Exchange) algorithms.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ciphers = mkOption {
|
|
|
|
|
type = types.nullOr (types.listOf types.str);
|
|
|
|
|
default = null;
|
|
|
|
|
example = [ "chacha20-poly1305@openssh.com" "aes256-gcm@openssh.com" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Specifies the ciphers allowed and their order of preference.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
macs = mkOption {
|
|
|
|
|
type = types.nullOr (types.listOf types.str);
|
|
|
|
|
default = null;
|
|
|
|
|
example = [ "hmac-sha2-512-etm@openssh.com" "hmac-sha1" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Specifies the MAC (message authentication code) algorithms in order of preference. The MAC algorithm is used
|
|
|
|
|
for data integrity protection.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-03-25 16:42:05 +01:00
|
|
|
|
};
|
2014-04-17 23:45:26 +01:00
|
|
|
|
|
2012-03-25 16:42:05 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
config = {
|
2013-10-25 14:47:30 +01:00
|
|
|
|
|
2016-09-05 14:38:42 +01:00
|
|
|
|
programs.ssh.setXAuthLocation =
|
2016-11-21 15:17:35 +00:00
|
|
|
|
mkDefault (config.services.xserver.enable || config.programs.ssh.forwardX11 || config.services.openssh.forwardX11);
|
2016-09-05 14:38:42 +01:00
|
|
|
|
|
2015-08-27 14:24:14 +01:00
|
|
|
|
assertions =
|
|
|
|
|
[ { assertion = cfg.forwardX11 -> cfg.setXAuthLocation;
|
|
|
|
|
message = "cannot enable X11 forwarding without setting XAuth location";
|
|
|
|
|
}
|
|
|
|
|
] ++ flip mapAttrsToList cfg.knownHosts (name: data: {
|
|
|
|
|
assertion = (data.publicKey == null && data.publicKeyFile != null) ||
|
|
|
|
|
(data.publicKey != null && data.publicKeyFile == null);
|
|
|
|
|
message = "knownHost ${name} must contain either a publicKey or publicKeyFile";
|
|
|
|
|
});
|
2013-10-25 14:47:30 +01:00
|
|
|
|
|
2015-08-18 12:09:38 +01:00
|
|
|
|
# SSH configuration. Slight duplication of the sshd_config
|
|
|
|
|
# generation in the sshd service.
|
|
|
|
|
environment.etc."ssh/ssh_config".text =
|
|
|
|
|
''
|
2019-01-10 11:40:18 +00:00
|
|
|
|
# Custom options from `extraConfig`, to override generated options
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
|
|
|
|
|
|
# Generated options from other settings
|
|
|
|
|
Host *
|
2015-08-18 12:09:38 +01:00
|
|
|
|
AddressFamily ${if config.networking.enableIPv6 then "any" else "inet"}
|
2021-11-21 17:25:03 +00:00
|
|
|
|
GlobalKnownHostsFile ${concatStringsSep " " knownHostsFiles}
|
2015-08-18 12:09:38 +01:00
|
|
|
|
|
|
|
|
|
${optionalString cfg.setXAuthLocation ''
|
|
|
|
|
XAuthLocation ${pkgs.xorg.xauth}/bin/xauth
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
ForwardX11 ${if cfg.forwardX11 then "yes" else "no"}
|
|
|
|
|
|
2018-07-21 12:06:16 +01:00
|
|
|
|
${optionalString (cfg.pubkeyAcceptedKeyTypes != []) "PubkeyAcceptedKeyTypes ${concatStringsSep "," cfg.pubkeyAcceptedKeyTypes}"}
|
|
|
|
|
${optionalString (cfg.hostKeyAlgorithms != []) "HostKeyAlgorithms ${concatStringsSep "," cfg.hostKeyAlgorithms}"}
|
2019-05-22 12:41:32 +01:00
|
|
|
|
${optionalString (cfg.kexAlgorithms != null) "KexAlgorithms ${concatStringsSep "," cfg.kexAlgorithms}"}
|
|
|
|
|
${optionalString (cfg.ciphers != null) "Ciphers ${concatStringsSep "," cfg.ciphers}"}
|
|
|
|
|
${optionalString (cfg.macs != null) "MACs ${concatStringsSep "," cfg.macs}"}
|
2015-08-18 12:09:38 +01:00
|
|
|
|
'';
|
2014-04-17 23:45:26 +01:00
|
|
|
|
|
2015-08-27 14:24:14 +01:00
|
|
|
|
environment.etc."ssh/ssh_known_hosts".text = knownHostsText;
|
|
|
|
|
|
2014-04-17 23:45:26 +01:00
|
|
|
|
# FIXME: this should really be socket-activated for über-awesomeness.
|
2017-05-25 18:33:13 +01:00
|
|
|
|
systemd.user.services.ssh-agent = mkIf cfg.startAgent
|
|
|
|
|
{ description = "SSH Agent";
|
2014-04-17 23:45:26 +01:00
|
|
|
|
wantedBy = [ "default.target" ];
|
2017-10-23 09:54:00 +01:00
|
|
|
|
unitConfig.ConditionUser = "!@system";
|
2014-04-17 23:45:26 +01:00
|
|
|
|
serviceConfig =
|
2014-04-18 16:37:47 +01:00
|
|
|
|
{ ExecStartPre = "${pkgs.coreutils}/bin/rm -f %t/ssh-agent";
|
2014-11-15 11:13:19 +00:00
|
|
|
|
ExecStart =
|
|
|
|
|
"${cfg.package}/bin/ssh-agent " +
|
|
|
|
|
optionalString (cfg.agentTimeout != null) ("-t ${cfg.agentTimeout} ") +
|
2019-11-07 22:13:18 +00:00
|
|
|
|
optionalString (cfg.agentPKCS11Whitelist != null) ("-P ${cfg.agentPKCS11Whitelist} ") +
|
2014-11-15 11:13:19 +00:00
|
|
|
|
"-a %t/ssh-agent";
|
2014-04-18 16:37:47 +01:00
|
|
|
|
StandardOutput = "null";
|
2014-04-17 23:45:26 +01:00
|
|
|
|
Type = "forking";
|
|
|
|
|
Restart = "on-failure";
|
2014-04-18 16:37:47 +01:00
|
|
|
|
SuccessExitStatus = "0 2";
|
2014-04-17 23:45:26 +01:00
|
|
|
|
};
|
2015-02-25 13:29:24 +00:00
|
|
|
|
# Allow ssh-agent to ask for confirmation. This requires the
|
|
|
|
|
# unit to know about the user's $DISPLAY (via ‘systemctl
|
|
|
|
|
# import-environment’).
|
2021-12-11 16:13:50 +00:00
|
|
|
|
environment.SSH_ASKPASS = optionalString cfg.enableAskPassword askPasswordWrapper;
|
2015-02-25 13:29:24 +00:00
|
|
|
|
environment.DISPLAY = "fake"; # required to make ssh-agent start $SSH_ASKPASS
|
2014-04-17 23:45:26 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
environment.extraInit = optionalString cfg.startAgent
|
|
|
|
|
''
|
|
|
|
|
if [ -z "$SSH_AUTH_SOCK" -a -n "$XDG_RUNTIME_DIR" ]; then
|
|
|
|
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent"
|
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
|
2021-12-11 16:13:50 +00:00
|
|
|
|
environment.variables.SSH_ASKPASS = optionalString cfg.enableAskPassword askPassword;
|
2015-02-25 13:29:24 +00:00
|
|
|
|
|
2012-03-25 16:42:05 +01:00
|
|
|
|
};
|
2009-05-28 00:59:14 +01:00
|
|
|
|
}
|