Skip to content

Commit

Permalink
feat: Change bootloader to GRUB
Browse files Browse the repository at this point in the history
  • Loading branch information
lpchaim committed Dec 23, 2023
1 parent 94796d5 commit 6f6c282
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions traits/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
{ config, lib, pkgs, ... }:

{
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.enable = false;
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
boot.loader.efi.canTouchEfiVariables = true;

# networking.hostName = "nixos"; # Define your hostname.
Expand Down

0 comments on commit 6f6c282

Please sign in to comment.