modules/boot: make ESP mount point configurable
This commit is contained in:
parent
1baac1f5d8
commit
3d0ef49120
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ in
|
||||||
|
|
||||||
grub = {
|
grub = {
|
||||||
enable = mkBoolOpt false;
|
enable = mkBoolOpt false;
|
||||||
|
efiSysMountPoint = mkOpt path "/boot/efi";
|
||||||
};
|
};
|
||||||
systemd-boot.enable = mkBoolOpt false;
|
systemd-boot.enable = mkBoolOpt false;
|
||||||
};
|
};
|
||||||
|
@ -37,7 +38,7 @@ in
|
||||||
};
|
};
|
||||||
efi = {
|
efi = {
|
||||||
canTouchEfiVariables = mkDefault false;
|
canTouchEfiVariables = mkDefault false;
|
||||||
efiSysMountPoint = mkDefault "/boot/efi";
|
efiSysMountPoint = cfg.grub.efiSysMountPoint;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue