nixos/modules/dev/lua.nix

30 lines
426 B
Nix
Raw Normal View History

2023-08-07 00:07:33 +04:00
{
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
2023-08-22 21:17:11 +04:00
# format and lint
stylua
selene
2023-08-07 00:07:33 +04:00
];
};
}