diff --git a/nixos/roles/hardware.nix b/nixos/roles/hardware.nix index ac55bcc..1c678b6 100644 --- a/nixos/roles/hardware.nix +++ b/nixos/roles/hardware.nix @@ -1,5 +1,4 @@ { # Bootloader - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader.grub.enable = true; } diff --git a/nixos/roles/vm.nix b/nixos/roles/vm.nix index 45a995e..32fba6d 100644 --- a/nixos/roles/vm.nix +++ b/nixos/roles/vm.nix @@ -1,7 +1,4 @@ -{ - modulesPath, - ... -}: { +{modulesPath, ...}: { imports = [ (modulesPath + "/virtualisation/xen-domU.nix") ];