1
0
mirror of https://github.com/jiriks74/presence.nvim synced 2024-11-23 12:27:50 +01:00
presence.nvim/default.nix
Jiří Štefka 9882b34844
All checks were successful
Luacheck / Luacheck (push) Successful in 13s
StyLua / StyLuacheck (push) Successful in 16s
feat(nix): Add basic nix environment (#49)
* feat(nix): Add basic nix environment

* fix(nix): Missing package group for luacheck
missing lua51Packages
2024-04-17 19:05:07 +02:00

12 lines
174 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = with pkgs; [
# Choose the build tools that you need
act
lua51Packages.luacheck
stylua
];
}