13 lines
281 B
Nix
13 lines
281 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
theme = pkgs.callPackage ./plymouth-theme.nix {};
|
|
in
|
|
{
|
|
boot.plymouth.enable = true;
|
|
boot.plymouth.theme = "sovran";
|
|
boot.plymouth.themePackages = [ theme ];
|
|
boot.kernelParams = [ "quiet" "splash" ];
|
|
boot.initrd.systemd.enable = true;
|
|
}
|