Update Plymouth look and feel

This commit is contained in:
Michael Smith 2024-09-06 14:38:15 +02:00
parent a7f56c80ee
commit d2137c9bde
3 changed files with 11 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

View File

@ -18,7 +18,10 @@
loader.systemd-boot.enable = true;
loader.systemd-boot.configurationLimit = 3;
loader.efi.canTouchEfiVariables = true;
plymouth.enable = true;
plymouth = {
enable = true;
logo = ../../assets/blank-plymouth-logo.png;
};
};
system.nixos.distroName = "deskOS 1";

View File

@ -23,13 +23,19 @@ in {
system.nixos.distroName = "deskOS 1";
# FIXME(m): Disable squashfs compression during development
isoImage.squashfsCompression = null;
boot = {
consoleLogLevel = 0;
kernelParams = ["quiet" "splash" "systemd.show_status=auto" "rd.udev.log_level=3"];
initrd.verbose = false;
loader.systemd-boot.enable = true;
loader.timeout = lib.mkForce 0;
plymouth.enable = true;
plymouth = {
enable = true;
logo = ../../assets/blank-plymouth-logo.png;
};
# NOTE(m): Enable kernel modules that improve wifi support on
# Macbooks during installation.