infra/module/user/root.nix

18 lines
393 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{ config, ... }:
{
den.aspects = {
root = {
nixos =
{ pkgs, ... }:
{
users.users.root = {
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINqTOL78DmmcbounEKN2eJhJkBdTLWYj23pNVDxO5mCN"
];
initialPassword = "id";
};
};
};
};
}