mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 00:26:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
30 lines
596 B
Nix
30 lines
596 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
console = {
|
|
useXkbConfig = true;
|
|
earlySetup = false;
|
|
};
|
|
|
|
boot = {
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "spinner-monochrome";
|
|
themePackages = [
|
|
(pkgs.plymouth-spinner-monochrome.override {
|
|
inherit (config.boot.plymouth) logo;
|
|
})
|
|
];
|
|
};
|
|
loader.timeout = 0;
|
|
kernelParams = [
|
|
"quiet"
|
|
"loglevel=3"
|
|
"systemd.show_status=auto"
|
|
"udev.log_level=3"
|
|
"rd.udev.log_level=3"
|
|
"vt.global_cursor_default=0"
|
|
];
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
};
|
|
}
|