config/profiles/vm/xen.nix

7 lines
170 B
Nix
Raw Normal View History

2024-10-19 04:05:37 +02:00
{ pkgs, ... }:
{
# This requires a reboot into a Xen kernel to take effect.
virtualisation.xen.enable = true;
system.nixos.tags = [ "with-xen" ]; # just cosmetic
}