feat(boot): add memtest option
This commit is contained in:
parent
f4c9737ea2
commit
9a62138619
|
@ -8,6 +8,11 @@ in {
|
|||
enable = mkEnableOption "bootloader installation and maintenance" // { default = true; };
|
||||
systemd-boot = mkEnableOption "generation selection via systemd-boot" // { default = !cfg.lanzaboote; };
|
||||
lanzaboote = mkEnableOption "secure boot maintenance via lanzaboote";
|
||||
memtest = mkOption {
|
||||
type = with types; nullOr int;
|
||||
default = null;
|
||||
description = "memtest passes to perform on boot";
|
||||
};
|
||||
};
|
||||
|
||||
config = let
|
||||
|
@ -20,6 +25,7 @@ in {
|
|||
loader.systemd-boot.enable = cfg.systemd-boot;
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
tmp.cleanOnBoot = true;
|
||||
kernelParams = optional (cfg.memtest != null) "memtest=${toString cfg.memtest}";
|
||||
};
|
||||
|
||||
# symlink for sbctl
|
||||
|
|
Loading…
Reference in a new issue