plymouth apple

This commit is contained in:
2026-02-09 16:01:34 -06:00
parent 3595428e02
commit 525cc60739
2 changed files with 49 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, pkgs, namespace, ... }:
{
# Use the systemd-boot EFI boot loader.
boot = {
@@ -32,5 +32,12 @@
supportedFilesystems = {
apfs = lib.mkForce true;
};
plymouth = {
theme = "nixos-bgrt-apple";
themePackages = with pkgs.${namespace}; [
plymouth-bgrt-apple
];
};
};
}