nix/module/common/Ssh.nix

9 lines
208 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ pkgs, util, ... } @args: let
2024-04-14 22:54:20 +03:00
ssh = import ./ssh args;
2024-04-06 03:03:58 +03:00
in {
programs.ssh.extraConfig = ssh.config;
# Add SSHFS to mount remote filesystems over SSH.
environment.systemPackages = with pkgs; [ sshfs ];
}