15 lines
171 B
Nix
15 lines
171 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./option.nix ];
|
|
|
|
users.users.root = {
|
|
openssh.authorizedKeys.keys = [ config.mainUser.sshKey ];
|
|
};
|
|
}
|