nichts/modules/style/theming.nix

19 lines
270 B
Nix
Raw Normal View History

2025-03-14 09:44:14 +01:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib.modules) mkMerge mkIf;
inherit (lib.options) mkEnableOption;
2025-03-31 11:05:42 +02:00
cfg = config.modules.theming;
2025-03-14 09:44:14 +01:00
in {
2025-03-31 11:05:42 +02:00
options.modules.theming = {
2025-03-14 09:44:14 +01:00
qt.enable = mkEnableOption "qt theming";
};
2025-04-09 15:31:18 +02:00
config =
mkMerge [
];
2025-03-14 09:44:14 +01:00
}