nixos/calibre-web: restore compatibility with old dataDir values (#375539)
[NixPkgs.git] / nixos / modules / virtualisation / xen-domU.nix
blob9c0045e8f8ccc9ba3fdea1eb929b8f974a4df17e
1 # Common configuration for Xen DomU NixOS virtual machines.
3 { ... }:
6   boot.loader.grub.device = "nodev";
8   boot.initrd.kernelModules = [
9     "xen-blkfront"
10     "xen-tpmfront"
11     "xen-kbdfront"
12     "xen-fbfront"
13     "xen-netfront"
14     "xen-pcifront"
15     "xen-scsifront"
16   ];
18   # Send syslog messages to the Xen console.
19   services.syslogd.tty = "hvc0";
21   # Don't run ntpd, since we should get the correct time from Dom0.
22   services.timesyncd.enable = false;