house keeping

This commit is contained in:
Gregory Burd 2023-10-25 10:51:54 -04:00
parent d7a640bf3a
commit 0a0815c8a6
Signed by: greg
GPG key ID: AEFACC3FC495AF89
4 changed files with 18 additions and 1 deletions

0
.env Normal file
View file

6
.envrc Normal file
View file

@ -0,0 +1,6 @@
dotenv
#[ -d .venv ] || (python -m venv .venv; python -m pip install rbtools)
#[ -f .venv/bin/activate ] && source .venv/bin/activate
watch_file devShell.nix shell.nix flake.nix
#use flake || use nix

3
.gitignore vendored
View file

@ -1,2 +1,3 @@
.direnv/
.nvimlog
*.priv.*
*.priv.*

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
ripgrep
envsubst
];
DOCKER_BUILDKIT = 1;
}