mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
8 lines
167 B
Nix
8 lines
167 B
Nix
|
|
{ pkgs, lib, config, ... }:
|
||
|
|
{
|
||
|
|
services.openssh.enable = true;
|
||
|
|
users.users.root.openssh.authorizedKeys.keyFiles = [
|
||
|
|
../ssh_keys/phfroidmont-desktop.pub
|
||
|
|
];
|
||
|
|
}
|