punkfairie
6a2b253f83
Modules were being placed at <group>.<namespace>.<module> instead of <namespace>.<group>.<module>
30 lines
541 B
Nix
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";
|
|
};
|
|
};
|
|
}
|