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

21 lines
235 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "lua";
optionPath = [
"coding"
"langs"
"lua"
];
config' = {
my.home.home.packages = with pkgs; [
luajit
];
};
}