nix/user/Root.nix

22 lines
309 B
Nix
Raw Normal View History

{ const
, util
, style
, pkgs
, config
, key
, secret
, ... } @args: {
imports = [
2024-06-25 04:04:39 +03:00
./common
];
2024-04-14 23:37:48 +03:00
2024-06-25 04:04:39 +03:00
# user.common.users = [{ name = "root"; homeDir = "/root"; }];
users.users.root.hashedPassword = secret.hashedPassword;
2024-03-11 23:26:54 +03:00
security.sudo = {
enable = false;
extraConfig = ''
Defaults rootpw
'';
};
}