nix/module/common/Ssh.nix

7 lines
158 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 {
environment.systemPackages = with pkgs; [ sshfs ];
2024-04-06 03:03:58 +03:00
programs.ssh.extraConfig = ssh.config;
}