nix-infra/configuration/proxmox-vm/default.nix

11 lines
178 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ ... }:
{
# Enable console output on TTY1 and serial console
boot.kernelParams = [
"console=tty1"
"console=ttyS0,115200"
];
2023-07-10 15:30:51 +02:00
services.qemuGuest.enable = true;
}