Skip to content

Commit

Permalink
revert: use legacy bios boot
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed Nov 10, 2024
1 parent 0f8ca84 commit 6ce18ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion nixos/server/blck0/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
inputs.nixos-hardware.nixosModules.common-pc
inputs.nixos-hardware.nixosModules.common-pc-ssd
(import ./disks.nix { })
../../mixins/hardware/systemd-boot.nix
../../mixins/hardware/grub-legacy-boot.nix
../../mixins/services/bluetooth.nix
];

Expand Down
12 changes: 4 additions & 8 deletions nixos/server/blck0/disks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,10 @@ in
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "1G";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
boot = {
size = "1M";
# for grub MBR
type = "EF02";
};
root = {
start = "1M";
Expand Down

0 comments on commit 6ce18ff

Please sign in to comment.