12 lines
185 B
Nix
Raw Permalink Normal View History

2025-07-27 22:50:25 +02:00
{
lib,
config,
...
}:
with lib; let
cfg = config.home.desktop.qt;
in {
options.home.desktop.qt.enable = mkEnableOption "Enable Qt support";
config.qt.enable = cfg.enable;
}