marleyos/modules/home/appearance/gtk/default.nix

27 lines
432 B
Nix
Raw Normal View History

2024-11-15 21:33:07 -08:00
{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule enabled;
2024-11-15 21:33:07 -08:00
cfg = config.marleyos.appearance.gtk;
inherit (config.marleyos.theme) colors;
2024-11-15 21:33:07 -08:00
in
{
options = mkEnableModule "appearance.gtk";
2024-11-15 21:33:07 -08:00
config = mkIf cfg.enable {
gtk = {
enable = true;
"${colors.base}" = enabled;
2024-11-15 21:33:07 -08:00
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
};
};
}