mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 20:12:59 +02:00
12 lines
160 B
Nix
12 lines
160 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
# Choose the build tools that you need
|
||
|
act
|
||
|
luacheck
|
||
|
stylua
|
||
|
];
|
||
|
}
|