Files
nixos-dotfiles/modules/coding/langs/all.nix
2025-04-13 15:09:14 +08:00

21 lines
354 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;
};
};
}