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

27 lines
457 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
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "appearance.gtk";
2024-11-15 21:33:07 -08:00
config = mkIf cfg.enable {
gtk = {
enable = true;
2024-11-16 22:44:45 -08:00
rose-pine = mkIf colors.isRosePine enabled;
2024-11-15 21:33:07 -08:00
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
};
};
}