reNixos/s0melapt0p-nix/boot/plymouth.nix
2025-04-27 12:47:02 +03:00

10 lines
188 B
Nix

{pkgs, ...}: {
boot = {
plymouth = {
enable = true;
themePackages = with pkgs; [
nixos-bgrt-plymouth
];
};
};
}