mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-14 21:11:08 +01:00
ssh: add setEnv option (#3935)
This commit is contained in:
parent
2f6a917ade
commit
6be873663e
3 changed files with 20 additions and 0 deletions
|
|
@ -15,6 +15,12 @@ let
|
|||
|
||||
unwords = builtins.concatStringsSep " ";
|
||||
|
||||
mkSetEnvStr = envStr: unwords
|
||||
(mapAttrsToList
|
||||
(name: value: ''${name}="${escape [ "\"" "\\" ] (toString value)}"'')
|
||||
envStr
|
||||
);
|
||||
|
||||
bindOptions = {
|
||||
address = mkOption {
|
||||
type = types.str;
|
||||
|
|
@ -189,6 +195,14 @@ let
|
|||
'';
|
||||
};
|
||||
|
||||
setEnv = mkOption {
|
||||
type = with types; attrsOf (oneOf [ str path int float ]);
|
||||
default = {};
|
||||
description = ''
|
||||
Environment variables and their value to send to the server.
|
||||
'';
|
||||
};
|
||||
|
||||
compression = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = null;
|
||||
|
|
@ -322,6 +336,7 @@ let
|
|||
++ optional (cf.hostname != null) " HostName ${cf.hostname}"
|
||||
++ optional (cf.addressFamily != null) " AddressFamily ${cf.addressFamily}"
|
||||
++ optional (cf.sendEnv != []) " SendEnv ${unwords cf.sendEnv}"
|
||||
++ optional (cf.setEnv != {}) " SetEnv ${mkSetEnvStr cf.setEnv}"
|
||||
++ optional (cf.serverAliveInterval != 0)
|
||||
" ServerAliveInterval ${toString cf.serverAliveInterval}"
|
||||
++ optional (cf.serverAliveCountMax != 3)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue