Link: https://github.com/nix-community/stylix/pull/1339 Co-authored-by: Matt Sturgeon <matt@sturgeon.me.uk> Reviewed-by: Matt Sturgeon <matt@sturgeon.me.uk> Reviewed-by: eveeifyeve <88671402+Eveeifyeve@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
33 lines
515 B
Nix
33 lines
515 B
Nix
{
|
|
lib,
|
|
mkTarget,
|
|
...
|
|
}:
|
|
{
|
|
imports =
|
|
map
|
|
(
|
|
{ name, humanName }:
|
|
lib.modules.importApply ./each-config.nix {
|
|
inherit
|
|
mkTarget
|
|
name
|
|
humanName
|
|
;
|
|
}
|
|
)
|
|
[
|
|
{
|
|
name = "firefox";
|
|
humanName = "Firefox";
|
|
}
|
|
{
|
|
name = "librewolf";
|
|
humanName = "LibreWolf";
|
|
}
|
|
{
|
|
name = "floorp";
|
|
humanName = "Floorp";
|
|
}
|
|
];
|
|
}
|