From 437e5aaabc73b21219fcbabc494918dd35762aba Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 30 Sep 2024 16:40:22 +0200 Subject: [PATCH] plymouth boot animation --- devices/inkvine/default.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/devices/inkvine/default.nix b/devices/inkvine/default.nix index 38a2b4f..d48a820 100644 --- a/devices/inkvine/default.nix +++ b/devices/inkvine/default.nix @@ -16,18 +16,36 @@ in { availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ]; luks.devices.root.device = "/dev/disk/by-uuid/${disks.crypt}"; kernelModules = [ "amdgpu" ]; + verbose = false; }; kernelModules = [ "kvm-amd" ]; kernelPackages = pkgs.linuxPackages_zen; + kernelParams = [ + "quiet" + "splash" + "boot.shell_on_fail" + "loglevel=3" + "rd.systemd.show_status=fail" + "rd.udev.log_level=3" + "udev.log_priority=3" + ]; loader = { systemd-boot = { enable = mkDefault true; editor = false; }; - timeout = 1; + timeout = 0; efi.canTouchEfiVariables = true; }; + plymouth = { + enable = true; + theme = "motion"; + themePackages = [(pkgs.adi1090x-plymouth-themes.override { + selected_themes = [ "motion" ]; + })]; + }; + consoleLogLevel = 0; }; fileSystems = {