NixOSDots/modules/nixos/bootloader.nix
2026-03-01 12:01:45 +01:00

27 lines
487 B
Nix

{
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 2;
extraEntries = {
"winslop.conf" = ''
title Winslop
efi /EFI/Microsoft/Boot/bootmgfw.efi
'';
};
};
efi = {
canTouchEfiVariables = true;
};
};
kernel = {
sysctl = {
"vm.max_map_count" = 16777216;
"fs.file-max" = 524288;
};
};
}; #End of "boot"
# EOF
}