Ignore environment in nix shell

This commit is contained in:
Sridhar Ratnakumar 2022-08-08 11:30:16 -04:00
parent 947153ae4a
commit ce7fa306e5
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -xe set -xe
exec nix develop -c cabal -- repl exec nix develop -i -c cabal -- repl

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -xe set -xe
exec nix develop -c ghcid -c "cabal repl exe:haskell-template" --warnings -T :main exec nix develop -i -c ghcid -c "cabal repl exe:haskell-template" --warnings -T :main

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -xe set -xe
exec nix develop -c ghcid -c "cabal repl test:tests" -T :main exec nix develop -i -c ghcid -c "cabal repl test:tests" -T :main