Skip to content

Commit

Permalink
Enable systemd boot on Maple
Browse files Browse the repository at this point in the history
  • Loading branch information
hzmmohamed committed Nov 17, 2024
1 parent ccc1470 commit 52b9959
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions systems/x86_64-linux/maple/boot.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{ options, config, pkgs, lib, ... }: {
boot = {
# Bootloader
loader.systemd-boot.enable = true;
loader.systemd-boot.configurationLimit = 5;
loader.efi.canTouchEfiVariables = true;
loader.efi.efiSysMountPoint = "/boot";

# https://github.com/NixOS/nixpkgs/blob/c32c39d6f3b1fe6514598fa40ad2cf9ce22c3fb7/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix#L66
loader.systemd-boot.editor = false;

};

}

0 comments on commit 52b9959

Please sign in to comment.