Skip to content

Commit 3f28ae0

Browse files
committed
hosts/monster: Switch from UEFI to BIOS/GRUB boot
1 parent 7bd5ca2 commit 3f28ae0

2 files changed

Lines changed: 5 additions & 12 deletions

File tree

hosts/monster/default.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
];
1313

1414
boot = {
15-
loader.systemd-boot.enable = true;
16-
loader.efi.canTouchEfiVariables = true;
15+
loader.grub.enable = true;
1716

1817
initrd = {
1918
availableKernelModules = [ "nvme" "xhci_pci" "usbhid" ];

hosts/monster/partitioning.nix

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@
55
content = {
66
type = "gpt";
77
partitions = {
8-
ESP = {
9-
label = "ESP";
10-
size = "512M";
11-
type = "EF00";
12-
content = {
13-
type = "filesystem";
14-
format = "vfat";
15-
mountpoint = "/boot";
16-
17-
};
8+
boot = {
9+
label = "boot";
10+
size = "1M";
11+
type = "EF02";
1812
};
1913
root = {
2014
label = "root";

0 commit comments

Comments
 (0)