dotfiles/modules/programming/lua.nix

9 lines
134 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs;
[
stylua # Lua formatter
];
}