nixcfg/modules/plymouth.nix

10 lines
141 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
boot = {
consoleLogLevel = 0;
initrd.verbose = false;
plymouth.enable = true;
};
}