We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd5ca2 commit 3f28ae0Copy full SHA for 3f28ae0
2 files changed
hosts/monster/default.nix
@@ -12,8 +12,7 @@
12
];
13
14
boot = {
15
- loader.systemd-boot.enable = true;
16
- loader.efi.canTouchEfiVariables = true;
+ loader.grub.enable = true;
17
18
initrd = {
19
availableKernelModules = [ "nvme" "xhci_pci" "usbhid" ];
hosts/monster/partitioning.nix
@@ -5,16 +5,10 @@
5
content = {
6
type = "gpt";
7
partitions = {
8
- ESP = {
9
- label = "ESP";
10
- size = "512M";
11
- type = "EF00";
- content = {
- type = "filesystem";
- format = "vfat";
- mountpoint = "/boot";
-
- };
+ boot = {
+ label = "boot";
+ size = "1M";
+ type = "EF02";
};
root = {
20
label = "root";
0 commit comments