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>
11 lines
181 B
Nix
11 lines
181 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "font-packages";
|
|
humanName = "Font packages";
|
|
|
|
configElements =
|
|
{ fonts }:
|
|
{
|
|
home = { inherit (fonts) packages; };
|
|
};
|
|
}
|