configs/workstation/plymouth.nix~

14 lines
240 B
Nix
Raw Permalink Normal View History

2024-11-14 09:34:10 +01:00
{ pkgs, ...}:
{
boot = {
plymouth = {
enable = true;
theme = "rings";
themePackages = with pkgs; [
(adil1090x-plymouth-themes.overrride {
selected_themes = [ "rings" ];
})
];
}