We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0b8c2 commit 4a93ea6Copy full SHA for 4a93ea6
machines/yokohama.nix
@@ -14,12 +14,15 @@
14
15
# Use the systemd-boot EFI boot loader.
16
boot.loader.systemd-boot.enable = true;
17
+ boot.loader.systemd-boot.consoleMode = "max";
18
boot.loader.efi.canTouchEfiVariables = false;
19
boot.loader.efi.efiSysMountPoint = "/boot/efi";
20
21
# Enable splash screen on boot
22
boot.plymouth.enable = true;
23
boot.plymouth.theme = "spinner";
24
+ boot.kernelParams = [ "quiet" ];
25
+ boot.initrd.systemd.enable = true; # Necessary to enable the LUKS unlock screen
26
27
# Update CPU microcode
28
hardware.cpu.amd.updateMicrocode = true;
0 commit comments