marleyos/modules/home/shell/qt.nix
2025-05-26 17:04:43 -07:00

12 lines
165 B
Nix

{
lib,
config,
pkgs,
...
}: {
config = lib.mkIf (config.marleycfg.profiles.desktop && pkgs.stdenv.isLinux) {
qt = {
enable = true;
};
};
}