dotnix/apps/nogui/ssh.nix

8 lines
119 B
Nix
Raw Normal View History

{ config, ... }:
{
2023-06-28 20:48:01 +00:00
programs.ssh = {
enable = true;
includes = [ config.age.secrets.ssh-config.path ];
2023-06-28 20:48:01 +00:00
};
}