10 lines
240 B
Nix
10 lines
240 B
Nix
{ pkgs, ... }: {
|
|
users.users.root = {
|
|
openssh.authorizedKeys.keyFiles = [
|
|
(pkgs.fetchurl {
|
|
url = "https://github.com/eboskma.keys";
|
|
sha256 = "uwK4FSLSHiwCJU9U7RBFHIoCmr7uUQLM0JM1u0bi4xo=";
|
|
})
|
|
];
|
|
};
|
|
}
|