2024-03-04 23:11:23 +03:00
|
|
|
{ const, ... }: {
|
2024-03-21 17:42:09 +03:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|