configuration.nix/hosts/skipper/boot/plymouth.nix
2024-12-08 02:30:49 +05:30

10 lines
246 B
Nix

{ lib, pkgs, ... }:
let theme = "owl"; in {
boot.plymouth = {
enable = true;
themePackages = lib.mkDefault [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
];
theme = lib.mkDefault theme;
};
}