Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sbulav committed Aug 5, 2024
1 parent fa31d5e commit 1cc03bd
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions nix/systems/x86_64-linux/serverz/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ in {
];

# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub = {
# no need to set devices, disko will add all devices that have a EF02 partition to the list already
devices = ["/dev/sda2"];
efiSupport = true;
efiInstallAsRemovable = true;
};
boot.loader.grub.device = "nodev";
# boot.loader.grub.enable = true;
# boot.loader.efi.canTouchEfiVariables = true;
# boot.loader.grub = {
# # no need to set devices, disko will add all devices that have a EF02 partition to the list already
# devices = ["/dev/sda2"];
# efiSupport = true;
# efiInstallAsRemovable = true;
# };

# environment.systemPackages = with pkgs; [
# # Any particular packages only for this host
Expand Down

0 comments on commit 1cc03bd

Please sign in to comment.