marleyos/modules/home/appearance/qt/default.nix
punkfairie 6a2b253f83
fix(home): Fix module enable option def
Modules were being placed at <group>.<namespace>.<module> instead of
<namespace>.<group>.<module>
2024-11-16 11:39:47 -08:00

30 lines
541 B
Nix

{
lib,
config,
namespace,
inputs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule;
cfg = config.${namespace}.appearance.qt;
inherit (config.${namespace}) theme;
in
{
options = mkEnableModule "appearance.qt";
config = mkIf cfg.enable {
xdg.configFile = mkIf (theme.colors.base == "rose-pine") {
"qt5ct/colors/rose-pine.conf" = {
source = "${inputs.rose-pine-qt5ct}/rose-pine.conf";
};
};
qt = {
enable = true;
style.name = "adwaita";
};
};
}