added robust iso

This commit is contained in:
2026-03-28 08:47:35 -05:00
parent 3b37d6de07
commit d69cdfdfef
10 changed files with 255 additions and 27 deletions

11
iso/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" ];
}