This commit is contained in:
2026-03-28 08:52:22 -05:00
parent d69cdfdfef
commit 5835f57a5f
6 changed files with 0 additions and 0 deletions

11
iso/branding.nix Normal file
View File

@@ -0,0 +1,11 @@
{ 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" ];
}