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

15 lines
231 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
];
# 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;
}