Link: https://github.com/nix-community/stylix/pull/958 Reviewed-by: Daniel Thwaites <danth@danth.me> Reviewed-by: awwpotato <awwpotato@voidq.com> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
16 lines
308 B
Nix
16 lines
308 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "gedit";
|
|
humanName = "GEdit";
|
|
|
|
configElements =
|
|
{ colors }:
|
|
{
|
|
xdg.dataFile = {
|
|
"gedit/styles/stylix.xml".source = colors {
|
|
template = ../gtksourceview/template.xml.mustache;
|
|
extension = ".xml";
|
|
};
|
|
};
|
|
};
|
|
}
|