18 lines
270 B
Nix
18 lines
270 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkMerge mkIf;
|
|
inherit (lib.options) mkEnableOption;
|
|
|
|
cfg = config.modules.theming;
|
|
in {
|
|
options.modules.theming = {
|
|
qt.enable = mkEnableOption "qt theming";
|
|
};
|
|
config =
|
|
mkMerge [
|
|
];
|
|
}
|