configs/workstation/plymouth.nix~
Geir Okkenhaug Jerstad 5ba1050e63 added plymouth config
2024-11-14 09:34:10 +01:00

14 lines
240 B
Nix

{ pkgs, ...}:
{
boot = {
plymouth = {
enable = true;
theme = "rings";
themePackages = with pkgs; [
(adil1090x-plymouth-themes.overrride {
selected_themes = [ "rings" ];
})
];
}