11 lines
257 B
Nix
11 lines
257 B
Nix
{ config, inputs, pkgs, ... }: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.raspberry-pi-4
|
|
];
|
|
hardware.raspberry-pi."4".fkms-3d.enable = true;
|
|
|
|
boot.kernel.sysctl = {
|
|
"kernel.core_pattern" = "|/bin/false";
|
|
"kernel.sysrq" = 1;
|
|
};
|
|
}
|