stylix/modules/gtk/nixos.nix

12 lines
321 B
Nix
Raw Permalink Normal View History

2024-12-24 16:04:27 +01:00
{ config, lib, ... }:
{
options.stylix.targets.gtk.enable =
config.lib.stylix.mkEnableTarget "all GTK3, GTK4 and Libadwaita apps" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.gtk.enable) {
# Required for Home Manager's GTK settings to work
programs.dconf.enable = true;
};
}