summary refs log tree commit diff
path: root/nixos/modules/virtualisation/xen-domU.nix
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-01-29 09:58:28 +0100
committerThomas Strobel <ts468@cam.ac.uk>2015-02-25 23:30:44 +0100
commit3d4fbb874cbc3d5d179e9fab0f7099e95b34d960 (patch)
treee6c082d788372f2539176a52ba3c191f35cdc384 /nixos/modules/virtualisation/xen-domU.nix
parent7cc7e9b64a3b4e23fd8d23e84d87cdb787155de7 (diff)
downloadnixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar.gz
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar.bz2
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar.lz
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar.xz
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.tar.zst
nixpkgs-3d4fbb874cbc3d5d179e9fab0f7099e95b34d960.zip
Update: add new Xen versions + update NixOS Xen modules
Versions of XEN:
- Xen 4.5
- Xen 4.5 + XenServer patches
- Xen 4.4.1
Diffstat (limited to 'nixos/modules/virtualisation/xen-domU.nix')
-rw-r--r--nixos/modules/virtualisation/xen-domU.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/xen-domU.nix b/nixos/modules/virtualisation/xen-domU.nix
index 48358966934..2db3190ad13 100644
--- a/nixos/modules/virtualisation/xen-domU.nix
+++ b/nixos/modules/virtualisation/xen-domU.nix
@@ -9,7 +9,10 @@
   boot.loader.grub.device = "nodev";
   boot.loader.grub.extraPerEntryConfig = "root (hd0)";
 
-  boot.initrd.kernelModules = [ "xen-blkfront" ];
+  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";