dotfiles/common/systemModules/sshd.nix

9 lines
120 B
Nix
Raw Normal View History

2025-02-21 21:45:59 -05:00
{ ... }:
{
services= {
openssh = {
authorizedKeysFiles = ["${./ssh.keys}"];
};
};
}