mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
20 lines
312 B
Nix
20 lines
312 B
Nix
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 2;
|
|
};
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
kernel = {
|
|
sysctl = {
|
|
"vm.max_map_count" = 16777216;
|
|
"fs.file-max" = 524288;
|
|
};
|
|
};
|
|
};
|
|
}
|