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 | b1518d20d293f924053895a694c188002ff6dac7 (patch) | |
| tree | e82ac917b38c725cc3a7c9db90cb4ae39d2f2c28 | |
| parent | Misc: Update README instructions for iso building (diff) | |
| download | nixos-config-b1518d20d293f924053895a694c188002ff6dac7.tar.gz nixos-config-b1518d20d293f924053895a694c188002ff6dac7.tar.bz2 nixos-config-b1518d20d293f924053895a694c188002ff6dac7.zip | |
Enable ssh x11 forwarding
| -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; |