diff options
| author | Baitinq <[email protected]> | 2022-09-07 19:28:06 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-07 19:28:06 +0200 |
| commit | 23ae8b85b22353595f3af8a0d56963367bc7e277 (patch) | |
| tree | 885db143a28f566edb728234a461cae61197586e /hosts | |
| parent | Misc: Update README instructions for iso building (diff) | |
| download | nixos-config-23ae8b85b22353595f3af8a0d56963367bc7e277.tar.gz nixos-config-23ae8b85b22353595f3af8a0d56963367bc7e277.tar.bz2 nixos-config-23ae8b85b22353595f3af8a0d56963367bc7e277.zip | |
Enable ssh x11 forwarding
Diffstat (limited to '')
| -rw-r--r-- | hosts/configuration.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 707f7b4..82af20b 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -124,7 +124,10 @@ }; programs = { - ssh.askPassword = ""; + ssh = { + enableAskPassword = false; + forwardX11 = true; + }; neovim = { enable = true; |