mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Added plymouth
This commit is contained in:
@@ -1,8 +1,24 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot = {
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
loader.systemd-boot.enable = true;
|
||||||
boot.loader.systemd-boot.configurationLimit = 10;
|
loader.efi.canTouchEfiVariables = true;
|
||||||
boot.initrd.luks.devices."luks-563ebcd9-614b-460f-af9a-5cf1d9c8bef5".device = "/dev/disk/by-uuid/563ebcd9-614b-460f-af9a-5cf1d9c8bef5";
|
loader.systemd-boot.configurationLimit = 10;
|
||||||
boot.kernelPackages = pkgs.linuxPackages_zen; # pkgs.linuxPackages_latest;
|
initrd = {
|
||||||
|
luks.devices."luks-563ebcd9-614b-460f-af9a-5cf1d9c8bef5".device = "/dev/disk/by-uuid/563ebcd9-614b-460f-af9a-5cf1d9c8bef5";
|
||||||
|
verbose = false;
|
||||||
|
};
|
||||||
|
kernelPackages = pkgs.linuxPackages_zen; # pkgs.linuxPackages_latest;
|
||||||
|
consoleLogLevel = 3;
|
||||||
|
kernelParams = [
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"intremap=on"
|
||||||
|
"boot.shell_on_fail"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
"rd.systemd.show_status=auto"
|
||||||
|
];
|
||||||
|
|
||||||
|
plymouth.enable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user