Replace Nix flake-based development setup with devenv for better developer experience and more streamlined environment management. Changes: - Remove flake.nix and flake.lock files - Add devenv.nix, devenv.yaml, and devenv.lock configuration - Update .envrc to use devenv instead of nix develop - Remove Docker development setup (compose.dev.yml, docker/mod.just) - Expand .gitignore with comprehensive IDE and OS exclusions - Remove Docker-related just commands from justfile
8 lines
220 B
Bash
8 lines
220 B
Bash
export DIRENV_WARN_TIMEOUT=20s
|
|
|
|
eval "$(devenv direnvrc)"
|
|
|
|
# The use_devenv function supports passing flags to the devenv command
|
|
# For example: use devenv --impure --option services.postgres.enable:bool true
|
|
use devenv
|