11.stylix/modules/gnome-text-editor/hm.nix
awwpotato eb19696b18
stylix: add overlay module (#1048)
Closes: https://github.com/danth/stylix/issues/865
Link: https://github.com/danth/stylix/pull/1048

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-03-31 17:36:36 +00:00

9 lines
217 B
Nix

{ config, lib, ... }:
{
config =
lib.mkIf
(config.stylix.enable && config.stylix.targets.gnome-text-editor.enable)
{
dconf.settings."org/gnome/TextEditor".style-scheme = "stylix";
};
}