mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-12-27 18:42:35 +01:00
feat(nix): Add basic nix environment (#49)
* feat(nix): Add basic nix environment * fix(nix): Missing package group for luacheck missing lua51Packages
This commit is contained in:
parent
28bf1bad66
commit
9882b34844
3 changed files with 15 additions and 0 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use nix
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1 +1,4 @@
|
|||
.DS_Store
|
||||
|
||||
# Nix + direnv
|
||||
.direnv/
|
||||
|
|
11
default.nix
Normal file
11
default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
# Choose the build tools that you need
|
||||
act
|
||||
lua51Packages.luacheck
|
||||
stylua
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue