22 lines
379 B
Nix
22 lines
379 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;
|
|
};
|
|
};
|
|
}
|