mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
21 lines
501 B
Nix
21 lines
501 B
Nix
{
|
|
hardware.enableRedistributableFirmware = true;
|
|
boot = {
|
|
blacklistedKernelModules = [ "nouveau" "lbm-nouveau" "pcspkr" ];
|
|
kernelParams = [ "fbcon=nodefer" "bgrt_disable" "quiet" "splash" ];
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "breeze";
|
|
logo = ../images/nixos.png;
|
|
};
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
consoleMode = "max";
|
|
editor = false;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
timeout = 0;
|
|
};
|
|
};
|
|
}
|