11.stylix/modules/gedit/hm.nix
2025-04-24 03:34:56 +00:00

19 lines
397 B
Nix

{ config, lib, ... }:
let
style = config.lib.stylix.colors {
template = ./template.xml.mustache;
extension = ".xml";
};
in
{
options.stylix.targets.gedit.enable =
config.lib.stylix.mkEnableTarget "GEdit" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.gedit.enable) {
xdg.dataFile = {
"gedit/styles/stylix.xml".source = style;
};
};
}