add dendrite for matrix.burd.me #1
4 changed files with 18 additions and 1 deletions
0
.env
Normal file
0
.env
Normal file
6
.envrc
Normal file
6
.envrc
Normal 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
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.direnv/
|
||||
.nvimlog
|
||||
*.priv.*
|
||||
*.priv.*
|
||||
|
|
10
shell.nix
Normal file
10
shell.nix
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue