From 342c3093a1ca13beaff8982b18fc6263d24c8be2 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 6 Mar 2023 12:57:17 +0100 Subject: [PATCH] Add sshfs --- modules/system/ssh/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/system/ssh/default.nix b/modules/system/ssh/default.nix index 532ffc6..1d64232 100644 --- a/modules/system/ssh/default.nix +++ b/modules/system/ssh/default.nix @@ -13,6 +13,8 @@ in services.openssh.enable = true; services.openssh.settings.X11forwarding = true; services.openssh.settings.PermitRootLogin = "yes"; + + environment.systemPackages = with pkgs; [ sshfs ]; }; }