Files
Nomarchy/modules/system/plymouth.nix
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

11 lines
167 B
Nix

{ config, pkgs, ... }:
{
boot.initrd.systemd.enable = true;
boot.plymouth = {
enable = true;
};
boot.kernelParams = [ "quiet" "splash" "loglevel=3" ];
}