added plymouth config

This commit is contained in:
Geir Okkenhaug Jerstad 2024-11-14 09:34:10 +01:00
parent 57e90d0515
commit 5ba1050e63
3 changed files with 41 additions and 0 deletions

13
workstation/plymouth.nix~ Normal file
View file

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