nix-home-manager-config/programs/ssh.nix
Jacob Hrbek 50f8176e0c Sync
2021-06-27 22:49:48 +02:00

7 lines
135 B
Nix

{ services, ... }: {
programs.ssh = {
proxyCommand = if(services.tor.torsocks.enable == true)
then "torsocks"
else null;
};
}