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

17 lines
264 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all coding editors";
optionPath = [
"coding"
"editor"
"all"
];
config' = {
my.coding.editor = {
neovim.enable = true;
vscode.enable = true;
};
};
}