mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
33 lines
801 B
Nix
33 lines
801 B
Nix
inputs: {
|
||
lib,
|
||
self,
|
||
...
|
||
}: {
|
||
imports = [(import ./stage2patch.nix inputs)];
|
||
environment.etc = {
|
||
"issue" = {
|
||
text = "[?12l[?25h";
|
||
mode = "0444";
|
||
};
|
||
};
|
||
boot = {
|
||
blacklistedKernelModules = ["nouveau" "lbm-nouveau" "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;
|
||
plymouth = {
|
||
enable = lib.mkDefault true;
|
||
theme = "breeze";
|
||
logo = "${self}/misc/nixos.png";
|
||
};
|
||
loader = {
|
||
systemd-boot = {
|
||
enable = lib.mkDefault true;
|
||
consoleMode = "max";
|
||
editor = false;
|
||
};
|
||
efi.canTouchEfiVariables = lib.mkDefault true;
|
||
timeout = 0;
|
||
};
|
||
};
|
||
}
|