From b4c5afaeccc05b5b89c467411cbfe5db42d6b3a8 Mon Sep 17 00:00:00 2001 From: Daniel Poelzleithner Date: Wed, 11 Nov 2020 20:50:46 +0100 Subject: [PATCH] enable sftp on storage-ng --- hosts/storage-ng/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/storage-ng/configuration.nix b/hosts/storage-ng/configuration.nix index 53936185..d1614d56 100644 --- a/hosts/storage-ng/configuration.nix +++ b/hosts/storage-ng/configuration.nix @@ -99,7 +99,10 @@ in { # List services that you want to enable: # Enable the OpenSSH daemon. - services.openssh.enable = true; + services.openssh = { + enable = true; + allowSFTP = true; + }; services.atftpd = { enable = true;