]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/ssh.nix
maint/backup(syncoid): adapt to moving targets
[julm/julm-nix.git] / home-manager / profiles / ssh.nix
1 { lib, ... }:
2 {
3 programs.ssh = {
4 enableDefaultConfig = false;
5 matchBlocks."*" = {
6 forwardAgent = lib.mkDefault false;
7 };
8 };
9 }