Files
Numbus/modules/backup/hardware/boot.nix
T
2026-05-02 12:52:08 +02:00

13 lines
240 B
Nix

{ config, ... }:
{
config = {
boot.initrd.systemd.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernel.sysctl = {
"vm.overcommit_memory" = 1;
};
};
}