diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix index 68c3286b22a0..6b459fa14085 100644 --- a/nixos/modules/system/boot/plymouth.nix +++ b/nixos/modules/system/boot/plymouth.nix @@ -35,6 +35,13 @@ let # See: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/106 mkdir -p $out/share/plymouth/themes/spinfinity ln -s $logo $out/share/plymouth/themes/spinfinity/header-image.png + + # Logo for catppuccin (two-step) theme + for flavour in mocha macchiato latte frappe + do + mkdir -p $out/share/plymouth/themes/catppuccin-"$flavour" + ln -s $logo $out/share/plymouth/themes/catppuccin-"$flavour"/header-image.png + done ''; themesEnv = pkgs.buildEnv {