Added missing config attribute.

This commit is contained in:
Raphaël Numbus
2026-02-24 22:39:35 +01:00
parent f301f48227
commit f0e304507b
3 changed files with 32 additions and 26 deletions
+7 -5
View File
@@ -1,11 +1,13 @@
{ config, ... }:
{
boot.initrd.systemd.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
config = {
boot.initrd.systemd.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernel.sysctl = {
"vm.overcommit_memory" = 1;
boot.kernel.sysctl = {
"vm.overcommit_memory" = 1;
};
};
}