Skip to content

Commit 07c802b

Browse files
committed
the queen founds the hive
1 parent d3f7ed8 commit 07c802b

9 files changed

+1039
-0
lines changed

.editorconfig

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2
11+
12+
# Ignore diffs/patches
13+
[*.{diff,patch}]
14+
end_of_line = unset
15+
insert_final_newline = unset
16+
trim_trailing_whitespace = unset
17+
indent_size = unset
18+
19+
[**/encrypted/**]
20+
end_of_line = unset
21+
insert_final_newline = unset
22+
trim_trailing_whitespace = unset
23+
charset = unset
24+
indent_style = unset
25+
indent_size = unset
26+
27+
[*.md]
28+
max_line_length = off
29+
trim_trailing_whitespace = false
30+
31+

.envrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /bin/sh
2+
3+
# reload when these files change
4+
watch_file apis/flake.nix
5+
watch_file apis/flake.lock
6+
7+
{
8+
# shell gc root dir
9+
mkdir -p "$(direnv_layout_dir)"
10+
eval "$(nix print-dev-env ./apis\#mellifera --update-input main --no-update-lock-file --no-write-lock-file --profile $(direnv_layout_dir)/flake-profile)"
11+
}
12+

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# direnv/direnv
2+
.direnv
3+
4+
# numtide/devshell
5+
.data
6+
7+
# nixos/nix
8+
result*

0 commit comments

Comments
 (0)