mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-03-07 02:22:43 -05:00
21 lines
318 B
Nix
21 lines
318 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
rices = {
|
|
basic = {
|
|
enable = true;
|
|
theme = "deus_ex";
|
|
extraConfig = "";
|
|
};
|
|
};
|
|
|
|
rice = let
|
|
enabledSet = lib.filter (set: config.ricing.${set}.enable) (lib.attrNames rices);
|
|
in
|
|
rices.${lib.head enabledSet};
|
|
in {
|
|
boot.plymouth = rice;
|
|
}
|