mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
14 lines
359 B
Nix
14 lines
359 B
Nix
_: {
|
||
environment.etc = {
|
||
"issue" = {
|
||
text = "[?12l[?25h";
|
||
mode = "0444";
|
||
};
|
||
};
|
||
boot = {
|
||
blacklistedKernelModules = ["pcspkr"];
|
||
kernelParams = ["fbcon=nodefer" "bgrt_disable" "quiet" "systemd.show_status=false" "rd.udev.log_level=3" "vt.global_cursor_default=0"];
|
||
consoleLogLevel = 3;
|
||
initrd.verbose = false;
|
||
};
|
||
}
|