Files
2025-07-25 21:22:24 +08:00

23 lines
405 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all coding langs";
optionPath = [
"coding"
"langs"
"all"
];
config' = {
my.coding.langs = {
c.enable = true;
go.enable = true;
js.enable = true;
python.enable = true;
rust.enable = true;
lua.enable = true;
qml.enable = true;
java.enable = true;
};
};
}