coding: langs: drop qml

This commit is contained in:
2026-08-08 10:43:41 +08:00
parent b14a5f0e55
commit ac1dbb1827
2 changed files with 0 additions and 21 deletions
-1
View File
@@ -16,7 +16,6 @@ in
rust.enable = true;
lua.enable = true;
java.enable = true;
qml.enable = true;
typst.enable = true;
toml.enable = true;
};
-20
View File
@@ -1,20 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.coding.langs.qml;
in
{
options.my.coding.langs.qml = {
enable = lib.mkEnableOption "QML";
};
config = lib.mkIf cfg.enable {
my.hm.home.packages = with pkgs; [
kdePackages.qtdeclarative
];
};
}