nix-server/users/root.nix

10 lines
170 B
Nix
Raw Normal View History

2024-09-19 12:40:19 +00:00
{ config, pkgs, inputs, ... }:
{
users.users.root = {
shell = pkgs.bash;
openssh.authorizedKeys.keyFiles = [
../keys/ocean-princess.hetzner
];
};
}