From acab4af8090c32f626ab48577e7a171bad88bb32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Thu, 22 Jan 2026 17:46:33 +0100 Subject: [PATCH] vanadium: blahaj boot animation --- nix/configurations/vanadium/nixos/misc.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nix/configurations/vanadium/nixos/misc.nix b/nix/configurations/vanadium/nixos/misc.nix index 0f757beb..5b6348c7 100644 --- a/nix/configurations/vanadium/nixos/misc.nix +++ b/nix/configurations/vanadium/nixos/misc.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: { system.stateVersion = "24.11"; @@ -15,6 +15,12 @@ "pcie_aspm=off" ]; + boot.plymouth = { + enable = true; + themePackages = [ pkgs.plymouth-blahaj-theme ]; + theme = "blahaj"; + }; + # Cross building # https://discourse.nixos.org/t/how-do-i-get-my-aarch64-linux-machine-to-build-x86-64-linux-extra-platforms-doesnt-seem-to-work/38106/2?u=leana8959 boot.binfmt.emulatedSystems = [ "aarch64-linux" ];