nix/module/common/Root.nix

10 lines
162 B
Nix
Raw Normal View History

2024-03-04 23:11:23 +03:00
{ const, ... }: {
users.users.root.hashedPassword = const.hashedPassword;
2024-03-11 23:26:54 +03:00
security.sudo = {
enable = false;
extraConfig = ''
Defaults rootpw
'';
};
}