14 lines
170 B
Nix
14 lines
170 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./lanzaboote
|
|
./services
|
|
./systemd
|
|
];
|
|
|
|
boot.kernel.sysctl = {
|
|
"vm.max_map_count" = 2147483642;
|
|
"kernel.sysrq" = 1;
|
|
};
|
|
}
|