2021-03-08 06:11:15 -08:00
|
|
|
{
|
2021-03-08 06:11:17 -08:00
|
|
|
# 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 ];
|
|
|
|
};
|
2021-03-08 06:11:15 -08:00
|
|
|
};
|
|
|
|
}
|