Compare commits

..

1 commit

Author SHA1 Message Date
4a65723e05 Differentiate hardware and vms in roles 2024-01-08 09:52:18 +01:00
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,5 @@
{ {
# Bootloader # Bootloader
boot.loader.grub.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
} }

View file

@ -1,4 +1,7 @@
{modulesPath, ...}: { {
modulesPath,
...
}: {
imports = [ imports = [
(modulesPath + "/virtualisation/xen-domU.nix") (modulesPath + "/virtualisation/xen-domU.nix")
]; ];