13 lines
197 B
Nix
13 lines
197 B
Nix
{ const, ... }: {
|
|
imports = [
|
|
./home/Root.nix
|
|
];
|
|
users.users.root.hashedPassword = const.hashedPassword;
|
|
security.sudo = {
|
|
enable = false;
|
|
extraConfig = ''
|
|
Defaults rootpw
|
|
'';
|
|
};
|
|
}
|