Home

dotnix @c61443686ddcd3fd8b42554d138cf4af912500e1 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / ssh.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{ config, ... }:
{
  programs.ssh = {
    enable = true;
    includes = [ config.age.secrets.ssh-config.path ];
    extraConfig = ''
      IdentitiesOnly yes
    '';
  };
  services.ssh-agent.enable = true;
}