This commit is contained in:
mjallen18
2025-08-26 19:47:36 -05:00
parent 3fda24b5ac
commit 68f6ced410
5 changed files with 20 additions and 37 deletions

View File

@@ -5,7 +5,7 @@
...
}:
let
isArm = ("aarch64-linux" == system);
isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system);
in
{
boot = {

View File

@@ -1,6 +1,6 @@
{ ... }:
{ lib, ... }:
{
boot.plymouth = {
enable = true;
enable = lib.mkDefault true;
};
}