File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ export DIRENV_WARN_TIMEOUT=20s
4+
5+ eval " $( devenv direnvrc) "
6+
7+ # `use devenv` supports the same options as the `devenv shell` command.
8+ #
9+ # To silence all output, use `--quiet`.
10+ #
11+ # Example usage: use devenv --quiet --impure --option services.postgres.enable:bool true
12+ use devenv
Original file line number Diff line number Diff line change @@ -32,3 +32,14 @@ go.work.sum
3232# .vscode/
3333repokill
3434.devenv /
35+
36+ # Devenv
37+ .devenv *
38+ devenv.local.nix
39+ devenv.local.yaml
40+
41+ # direnv
42+ .direnv
43+
44+ # pre-commit
45+ .pre-commit-config.yaml
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://devenv.sh/devenv.schema.json
2+ inputs :
3+ nixpkgs :
4+ url : github:cachix/devenv-nixpkgs/rolling
5+
6+ # If you're using non-OSS software, you can set allowUnfree to true.
7+ # allowUnfree: true
8+
9+ # If you're willing to use a package that's vulnerable
10+ # permittedInsecurePackages:
11+ # - "openssl-1.1.1w"
12+
13+ # If you have more than one devenv you can merge them
14+ # imports:
15+ # - ./backend
You can’t perform that action at this time.
0 commit comments