nixos-config/users/root/default.nix

13 lines
272 B
Nix
Raw Normal View History

2024-02-05 11:46:52 +01:00
{ pkgs, ... }:
{
2021-11-12 17:10:17 +01:00
users.users.root = {
2022-11-11 12:51:48 +01:00
initialHashedPassword = "";
2021-11-12 17:10:17 +01:00
openssh.authorizedKeys.keyFiles = [
(pkgs.fetchurl {
url = "https://github.com/eboskma.keys";
2023-11-30 08:59:37 +01:00
sha256 = "5pkayHiDL5JfXqAmTGtaYpbrjIjHFHyJWOLnM4yqgK0=";
2021-11-12 17:10:17 +01:00
})
];
};
}