2024-11-15 21:33:15 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf;
|
2024-11-16 22:34:40 -08:00
|
|
|
inherit (lib.marleyos) mkEnableModule;
|
2024-11-15 21:33:15 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.appearance.qt;
|
|
|
|
inherit (config.marleyos.theme) colors;
|
2024-11-15 21:33:15 -08:00
|
|
|
in
|
|
|
|
{
|
2024-11-16 23:05:17 -08:00
|
|
|
options.marleyos = mkEnableModule "appearance.qt";
|
2024-11-15 21:33:15 -08:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2024-11-16 22:34:40 -08:00
|
|
|
xdg.configFile = mkIf (colors.base == "rose-pine") {
|
2024-11-15 21:33:15 -08:00
|
|
|
"qt5ct/colors/rose-pine.conf" = {
|
|
|
|
source = "${inputs.rose-pine-qt5ct}/rose-pine.conf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
qt = {
|
|
|
|
enable = true;
|
|
|
|
style.name = "adwaita";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|