1
0
Fork 0
This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
dotnix-archive/apps/ssh.nix

7 lines
97 B
Nix
Raw Normal View History

2023-06-28 20:48:01 +00:00
{
programs.ssh = {
enable = true;
extraConfig = builtins.readFile ./ssh/config;
};
}