11.stylix/modules/gnome-text-editor/hm.nix
bricked a6b53aa677
gnome-text-editor: init (#747)
Initialize the GNOME Text Editor with the Gedit module theme.

Link: https://github.com/danth/stylix/pull/747

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-01-06 16:57:17 +01:00

12 lines
249 B
Nix

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