nichts/modules/style/theming.nix
2025-04-21 21:22:30 +02:00

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 [
];
}