add dendrite for matrix.burd.me #1

Merged
greg merged 6 commits from dendrite into main 2023-10-25 15:07:09 +00:00
4 changed files with 18 additions and 1 deletions
Showing only changes of commit fc29b7c9fc - Show all commits

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;
}