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

17 lines
275 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all coding tools";
optionPath = [
"coding"
"all"
];
config' = {
my.coding = {
editor.all.enable = true;
langs.all.enable = true;
misc.enable = true;
};
};
}