Home

dotnix @c132fb7a63e49443c7c3d1b888414eee6a0f1c71 - 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
{config, ...}: {
  programs.ssh = {
    enable = true;
    includes = [
      config.age.secrets.ssh-config.path
    ];
  };
}