11.stylix/modules/gedit/hm.nix
2025-05-21 13:58:49 -07:00

16 lines
293 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "gedit";
humanName = "GEdit";
configElements =
{ colors }:
{
xdg.dataFile = {
"gedit/styles/stylix.xml".source = colors {
template = ./template.xml.mustache;
extension = ".xml";
};
};
};
}