Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
18 lines
452 B
Nix
18 lines
452 B
Nix
# Common configuration for Xen DomU NixOS virtual machines.
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
boot.loader.grub.device = "nodev";
|
|
|
|
boot.initrd.kernelModules =
|
|
[ "xen-blkfront" "xen-tpmfront" "xen-kbdfront" "xen-fbfront"
|
|
"xen-netfront" "xen-pcifront" "xen-scsifront"
|
|
];
|
|
|
|
# Send syslog messages to the Xen console.
|
|
services.syslogd.tty = "hvc0";
|
|
|
|
# Don't run ntpd, since we should get the correct time from Dom0.
|
|
services.timesyncd.enable = false;
|
|
}
|