dotnix/apps/nogui/ssh.nix

9 lines
127 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
};
}