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>
9 lines
217 B
Nix
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";
|
|
};
|
|
}
|