mirror of
https://github.com/danth/stylix
synced 2024-11-27 06:30:23 +00:00
18 lines
372 B
Nix
18 lines
372 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
style = config.lib.stylix.colors {
|
|
template = ./template.mustache;
|
|
extension = "xml";
|
|
};
|
|
|
|
in {
|
|
options.stylix.targets.gedit.enable =
|
|
config.lib.stylix.mkEnableTarget "GEdit" true;
|
|
|
|
config = lib.mkIf config.stylix.targets.gedit.enable {
|
|
xdg.dataFile = {
|
|
"gedit/styles/stylix.xml".source = style;
|
|
};
|
|
};
|
|
}
|