1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2025-04-05 03:53:02 +02:00

feat(nix): Add basic nix environment

This commit is contained in:
Jiří Štefka 2024-04-17 18:57:34 +02:00
parent a388333151
commit ec94195270
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
3 changed files with 15 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

3
.gitignore vendored
View file

@ -1 +1,4 @@
.DS_Store
# Nix + direnv
.direnv/

11
default.nix Normal file
View file

@ -0,0 +1,11 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = with pkgs; [
# Choose the build tools that you need
act
luacheck
stylua
];
}