summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-18 14:00:44 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-18 14:00:44 +0100
commit5d9e292152bad470d6c1b3fa3a826dc98e2c797e (patch)
tree2d71424d5fb973c2e023b875197bd68bc32885ed /nixos
parent1cb0f4f1be753236ebec004ba0bac116830c95ec (diff)
nixos: boot: split grub and efi
Diffstat (limited to 'nixos')
-rw-r--r--nixos/boot.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/boot.nix b/nixos/boot.nix
index bbdf1fe..8d3a148 100644
--- a/nixos/boot.nix
+++ b/nixos/boot.nix
@@ -1,7 +1,10 @@
{ config, pkgs, ... }:
{
- personal.boot.grub.enable = true;
+ personal.boot = {
+ grub.enable = true;
+ efi.enable = true;
+ };
boot.kernelPackages = pkgs.linuxPackages_latest;
}