Update Plymouth look and feel
This commit is contained in:
parent
a7f56c80ee
commit
d2137c9bde
BIN
assets/blank-plymouth-logo.png
Normal file
BIN
assets/blank-plymouth-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 127 B |
@ -18,7 +18,10 @@
|
|||||||
loader.systemd-boot.enable = true;
|
loader.systemd-boot.enable = true;
|
||||||
loader.systemd-boot.configurationLimit = 3;
|
loader.systemd-boot.configurationLimit = 3;
|
||||||
loader.efi.canTouchEfiVariables = true;
|
loader.efi.canTouchEfiVariables = true;
|
||||||
plymouth.enable = true;
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
logo = ../../assets/blank-plymouth-logo.png;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
system.nixos.distroName = "deskOS 1";
|
system.nixos.distroName = "deskOS 1";
|
||||||
|
|||||||
@ -23,13 +23,19 @@ in {
|
|||||||
|
|
||||||
system.nixos.distroName = "deskOS 1";
|
system.nixos.distroName = "deskOS 1";
|
||||||
|
|
||||||
|
# FIXME(m): Disable squashfs compression during development
|
||||||
|
isoImage.squashfsCompression = null;
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
consoleLogLevel = 0;
|
consoleLogLevel = 0;
|
||||||
kernelParams = ["quiet" "splash" "systemd.show_status=auto" "rd.udev.log_level=3"];
|
kernelParams = ["quiet" "splash" "systemd.show_status=auto" "rd.udev.log_level=3"];
|
||||||
initrd.verbose = false;
|
initrd.verbose = false;
|
||||||
loader.systemd-boot.enable = true;
|
loader.systemd-boot.enable = true;
|
||||||
loader.timeout = lib.mkForce 0;
|
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
|
# NOTE(m): Enable kernel modules that improve wifi support on
|
||||||
# Macbooks during installation.
|
# Macbooks during installation.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user