nixos/modules/dev/lua.nix
2023-08-06 23:07:33 +03:00

26 lines
376 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.dev.lua;
in {
options.modules.dev.lua = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
# lua language server
lua-language-server
# lua
lua
# luarocks
luarocks
];
};
}