nix/user/Root.nix

13 lines
197 B
Nix
Raw Normal View History

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