typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / nixos / modules / virtualisation / xen-domU.nix
blobce5a482b1145ba0263eabaf4ea9daaa3b8284ffd
1 # Common configuration for Xen DomU NixOS virtual machines.
3 { ... }:
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"
11     ];
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;