llynx: temp working plymouth

This commit is contained in:
Zynh Ludwig 2025-03-21 03:31:57 -07:00
parent 47ce63805f
commit 08b0c85ddf
2 changed files with 24 additions and 1 deletions

View file

@ -38,6 +38,11 @@
audio.enable = false;
};
snowhawk.plymouth = {
enable = true;
theme = "owl";
};
specialisation = {
plasma.configuration = {
environment.etc."specialisation".text = "plasma";

View file

@ -10,7 +10,25 @@
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot.kernelParams = [ "apple_dcp.show_notch=1" ];
# FIXME: was previously only "apple_dcp.show_notch=1"
# wish I could predict the commit hash
boot.kernelParams = lib.mkForce [
"earlycon"
"console=tty0"
"boot.shell_on_fail"
"nvme_apple.flush_interval=0"
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
"apple_dcp.show_notch=1"
"root=fstab"
"splash"
"loglevel=0"
];
hardware.asahi.peripheralFirmwareDirectory = ./firmware;
hardware.asahi.useExperimentalGPUDriver = true;