2010-10-05 15:44:40 +00:00
|
|
|
# Common configuration for Xen DomU NixOS virtual machines.
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
{ ... }:
|
2010-10-05 15:44:40 +00:00
|
|
|
|
|
|
|
{
|
2017-02-12 19:53:49 +00:00
|
|
|
boot.loader.grub.version = 2;
|
2010-10-05 15:44:40 +00:00
|
|
|
boot.loader.grub.device = "nodev";
|
|
|
|
|
2015-01-29 08:58:28 +00:00
|
|
|
boot.initrd.kernelModules =
|
|
|
|
[ "xen-blkfront" "xen-tpmfront" "xen-kbdfront" "xen-fbfront"
|
|
|
|
"xen-netfront" "xen-pcifront" "xen-scsifront"
|
|
|
|
];
|
2010-10-05 15:44:40 +00:00
|
|
|
|
|
|
|
# Send syslog messages to the Xen console.
|
|
|
|
services.syslogd.tty = "hvc0";
|
|
|
|
|
2010-10-06 20:22:36 +00:00
|
|
|
# Don't run ntpd, since we should get the correct time from Dom0.
|
2016-12-14 22:49:14 +00:00
|
|
|
services.timesyncd.enable = false;
|
2010-10-05 15:44:40 +00:00
|
|
|
}
|