mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
36 lines
848 B
Nix
36 lines
848 B
Nix
_: {
|
||
lib,
|
||
modulesPath,
|
||
...
|
||
}: {
|
||
disabledModules = ["${modulesPath}/system/boot/stage-2.nix"];
|
||
imports = [
|
||
./stage-2.nix
|
||
];
|
||
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 = ../misc/nixos.png;
|
||
};
|
||
loader = {
|
||
systemd-boot = {
|
||
enable = lib.mkDefault true;
|
||
consoleMode = "max";
|
||
editor = false;
|
||
};
|
||
efi.canTouchEfiVariables = lib.mkDefault true;
|
||
timeout = 0;
|
||
};
|
||
};
|
||
}
|