Skip to content

Instantly share code, notes, and snippets.

@msteen
Last active February 7, 2019 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msteen/c6bb7740822e7d0f15bf3c3ebc2103ee to your computer and use it in GitHub Desktop.
Save msteen/c6bb7740822e7d0f15bf3c3ebc2103ee to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
{
environment.systemPackages = [ (pkgs.runCommand "sftp-server" { } ''
mkdir -p $out/bin
ln -s ${pkgs.openssh}/libexec/sftp-server $out/bin/sftp-server
'') ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment