marleyos/modules/home/appearance/qt/default.nix

17 lines
233 B
Nix
Raw Normal View History

2024-11-16 05:33:15 +00:00
{
lib,
config,
inputs,
...
}: let
cfg = config.marleyos.appearance.qt;
in {
options.marleyos.appearance.qt.enable = lib.mkEnableOption "qt";
2024-11-16 05:33:15 +00:00
config = lib.mkIf cfg.enable {
2024-11-16 05:33:15 +00:00
qt = {
enable = true;
};
};
}