Files
Sovran_SystemsOS/iso/iso_branding.nix
2026-03-28 08:47:35 -05:00

11 lines
243 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" ];
}