self-hosting/modules/openssh.nix
Paul-Henri Froidmont d098f4bfbf
Reformat nix files
2021-07-15 17:33:31 +02:00

7 lines
166 B
Nix

{ pkgs, lib, config, ... }:
{
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keyFiles = [
../ssh_keys/phfroidmont-desktop.pub
];
}