dotfiles/common/systemModules/sshd.nix
2025-02-21 22:58:43 -05:00

9 lines
147 B
Nix

{ ... }:
{
services= {
openssh = {
enable = true;
authorizedKeysFiles = ["${./ssh.keys}"];
};
};
}