commit 11e90017cfb3ab2ab8c10ec4ea3bfd9e5e83c7a4
parent 6744a6d2aca989cc9a60d644a988db7d6555cf67
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 22 Jun 2020 19:11:03 +0200
systems/modules: add StreamLocalBindUnlink to ssh
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -75,7 +75,7 @@ soon-ish 👼):
Most of the `make` commands will try to populate this ahead of time. The assumption is :
have a `sync` folder where the assets are. *Note: how to bootstrap (as syncthing will
not be there, and the `sync` folder either)*
-- `docs`: holds documentation about this code, literate configuration, see [literate configuration](#org8ab6d3a).
+- `docs`: holds documentation about this code, literate configuration, see [literate configuration](#org8bde89c).
`make publish` will publish the `README.org` and the `docs` folder to my website.
- `lib`: shared code used during configuration (mostly `nix` code).
- `machines`: configuration per machines
@@ -85,7 +85,7 @@ soon-ish 👼):
- `private`: holds non-shareable code, like *secrets*.
- `tmp`: things to… organize (e.g. where I import my other *legacy* configuration)
-<a id="org8ab6d3a"></a>As I'm slowly, but <span class="underline">surely</span>, going to have `org-mode` files for
+<a id="org8bde89c"></a>As I'm slowly, but <span class="underline">surely</span>, going to have `org-mode` files for
literate configuration files in this repository, I have to think of how to organize files
in order to end up with one huge file. The goal of having those `org-mode` files, is
mainly to document my configuration and publish it, most likely on [sbr.pm](https://sbr.pm).
diff --git a/systems/modules/profiles/ssh.nix b/systems/modules/profiles/ssh.nix
@@ -27,6 +27,9 @@ in
enable = true;
startWhenNeeded = false;
forwardX11 = cfg.forwardX11;
+ extraConfig = ''
+ StreamLocalBindUnlink yes
+ '';
};
sshguard.enable = true;
};