Link: https://github.com/nix-community/stylix/pull/2041 Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
14 lines
303 B
Nix
14 lines
303 B
Nix
{ lib, mkTarget, ... }:
|
|
{
|
|
imports =
|
|
lib.mapAttrsToList
|
|
(
|
|
name: humanName:
|
|
lib.modules.importApply ./each-config.nix { inherit mkTarget name humanName; }
|
|
)
|
|
{
|
|
"firefox" = "Firefox";
|
|
"librewolf" = "LibreWolf";
|
|
"floorp" = "Floorp";
|
|
};
|
|
}
|