18 lines
249 B
Nix
18 lines
249 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./lanzaboote
|
|
./plymouth
|
|
./services
|
|
./systemd
|
|
];
|
|
|
|
boot = {
|
|
blacklistedKernelModules = [ "pcspkr" ];
|
|
kernel.sysctl = {
|
|
"vm.max_map_count" = 2147483642;
|
|
"kernel.sysrq" = 1;
|
|
};
|
|
};
|
|
}
|