1 # Common configuration for Xen DomU NixOS virtual machines.
6 boot.loader.grub.device = "nodev";
8 boot.initrd.kernelModules =
9 [ "xen-blkfront" "xen-tpmfront" "xen-kbdfront" "xen-fbfront"
10 "xen-netfront" "xen-pcifront" "xen-scsifront"
13 # Send syslog messages to the Xen console.
14 services.syslogd.tty = "hvc0";
16 # Don't run ntpd, since we should get the correct time from Dom0.
17 services.timesyncd.enable = false;