summary refs log tree commit diff
path: root/modules/virtualisation/xen-domU.nix
blob: a83e5dc612e12546cc9ab1d7425e7a6c0c31f269 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Common configuration for Xen DomU NixOS virtual machines.

{ config, pkgs, ... }:

{
  # We're being booted using pv-grub, which means that we need to
  # generate a GRUB 1 menu without actually installing GRUB.
  boot.loader.grub.version = 1;
  boot.loader.grub.device = "nodev";
  boot.loader.grub.extraPerEntryConfig = "root (hd0)";

  boot.initrd.kernelModules = [ "xen-blkfront" ];

  # Backgrounds don't work, so don't bother.
  services.ttyBackgrounds.enable = false;

  # Send syslog messages to the Xen console.
  services.syslogd.tty = "hvc0";

  # Start a mingetty on the Xen console (so that you can login using
  # "xm console" in Dom0). 
  services.mingetty.ttys = [ "hvc0" "tty1" "tty2" ];

  # Don't run ntpd, since we should get the correct time from Dom0.
  services.ntp.enable = false;
}