dotfiles/nixos/modules/sshd-emacs.nix
main a5a651dbb9
Large rework and cleanup
Signed-off-by: main <magic_rb@redalder.org>
2022-07-31 11:03:59 +02:00

25 lines
472 B
Nix

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
{
config,
lib,
options,
pkgs,
...
}:
with lib; let
cfg = config.magic_rb.sshdEmacs;
in {
options.magic_rb.sshdEmacs = {
enable = mkEnableOption "Enable sshd options necessary for emacs socket forwarding.";
};
config = {
services.openssh.extraConfig = ''
AcceptEnv INSIDE_EMACS
StreamLocalBindUnlink yes
'';
};
}