24 lines
376 B
Nix
24 lines
376 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";
|
|
};
|
|
}
|