dotfiles/common/systemModules/sshd.nix
2025-02-21 21:45:59 -05:00

8 lines
120 B
Nix

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