2024-12-23 11:55:36 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Used by https://direnv.net
|
|
|
|
|
|
|
|
# Automatically reload when this file changes
|
|
|
|
watch_file ./nix/devshells/default.nix
|
2025-03-29 18:17:18 +01:00
|
|
|
watch_file ./nix/devshells/rust.nix
|
2024-12-23 11:55:36 +01:00
|
|
|
watch_file ./nix/*.nix
|
|
|
|
|
|
|
|
# Load `nix develop`
|
|
|
|
use flake .#rust
|
|
|
|
|
|
|
|
# Extend the environment with per-user overrides
|
|
|
|
source_env_if_exists .envrc.local
|