15 lines
231 B
Nix
15 lines
231 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# Enable console output on TTY1 and serial console
|
|
boot.kernelParams = [
|
|
"console=tty1"
|
|
"console=ttyS0,115200"
|
|
];
|
|
|
|
services.qemuGuest.enable = true;
|
|
}
|