7 lines
170 B
Nix
7 lines
170 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
# This requires a reboot into a Xen kernel to take effect.
|
||
|
virtualisation.xen.enable = true;
|
||
|
system.nixos.tags = [ "with-xen" ]; # just cosmetic
|
||
|
}
|