9 lines
208 B
Nix
9 lines
208 B
Nix
{ pkgs, util, ... } @args: let
|
|
ssh = import ./ssh args;
|
|
in {
|
|
programs.ssh.extraConfig = ssh.config;
|
|
|
|
# Add SSHFS to mount remote filesystems over SSH.
|
|
environment.systemPackages = with pkgs; [ sshfs ];
|
|
}
|