9 lines
146 B
Nix
9 lines
146 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "fontconfig";
|
|
humanName = "Fontconfig";
|
|
|
|
configElements = {
|
|
fonts.fontconfig.enable = true;
|
|
};
|
|
}
|