remove nix-direnv

It doesn't actually do anything unless more configuration is added, but
it's not really necessary for this use case so removing it is easier.
This commit is contained in:
Charles Hall 2025-07-30 11:06:58 -07:00
parent 547881fb4a
commit 38202813ff
2 changed files with 2 additions and 3 deletions

View file

@ -26,8 +26,8 @@ before_script:
- if command -v nix > /dev/null; then echo "extra-substituters = https://nix-community.cachix.org" >> /etc/nix/nix.conf; fi
- if command -v nix > /dev/null; then echo "extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" >> /etc/nix/nix.conf; fi
# Install direnv and nix-direnv
- if command -v nix > /dev/null; then nix profile install --impure --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv; fi
# Install direnv
- if command -v nix > /dev/null; then nix profile install --impure --inputs-from . nixpkgs#direnv; fi
# Allow .envrc
- if command -v nix > /dev/null; then direnv allow; fi