03515a8da6
- Hardening is irrelevant in examples - The decreased performance is especially noticeable in VMs
13 lines
321 B
Nix
13 lines
321 B
Nix
{
|
|
# Disable the hardened preset to improve VM performance
|
|
disabledModules = [ <nix-bitcoin/modules/presets/hardened.nix> ];
|
|
|
|
config = {
|
|
virtualisation.graphics = false;
|
|
services.mingetty.autologinUser = "root";
|
|
users.users.root = {
|
|
openssh.authorizedKeys.keyFiles = [ ./id-vm.pub ];
|
|
};
|
|
};
|
|
}
|