11.stylix/modules/firefox/hm.nix
awwpotato a231e38dfc
firefox: use mkTarget (#1339)
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>
2025-06-02 19:53:33 +02:00

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";
}
];
}