nixfiles/users/root.nix

8 lines
208 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, ... }: {
2021-12-28 22:59:28 +00:00
users.users.root = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL4L1eBZzYXZNGBucTn/eOFp48el9JPiYt9iXQDpBSg/ chaoticryptidz@owo.monster"
];
2021-12-20 23:48:26 +00:00
};
}