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- if command -v nix & > /dev/null; then
2- use flake .# fission
1+ if has nix; then
2+ watch_file flake.nix
3+ watch_file flake.lock
4+ use flake .# fission
35fi
6+
7+ source_env_if_exists .envrc.local
Original file line number Diff line number Diff line change @@ -11,5 +11,6 @@ renderer/
1111.idea
1212** /.direnv
1313.npmrc
14+ .envrc.local
1415result
1516result- *
Original file line number Diff line number Diff line change 1- if command -v nix & > /dev/null; then
2- use flake .# exporter
1+ if has nix; then
2+ watch_file ../flake.nix
3+ watch_file ../flake.lock
4+ use flake ../.# exporter
35fi
6+
7+ source_env_if_exists .envrc.local
Original file line number Diff line number Diff line change 1- if command -v nix & > /dev/null; then
2- use flake .# fission
1+ if has nix; then
2+ watch_file ../flake.nix
3+ watch_file ../flake.lock
4+ use flake ../.# fission
35fi
6+
7+ source_env_if_exists .envrc.local
Original file line number Diff line number Diff line change 5454 exporter = pkgs . mkShell {
5555 packages = with pkgs ; [
5656 python3
57+ python3Packages . mypy
58+ python3Packages . protobuf
59+ python3Packages . requests
60+ python3Packages . types-protobuf
61+ python3Packages . types-requests
62+ python3Packages . urllib3
5763 black
5864 isort
5965 bun
66+ protobuf
6067 ] ;
6168 } ;
6269 glueball = pkgs . mkShell {
Original file line number Diff line number Diff line change 1- if command -v nix & > /dev/null; then
2- use flake .# glueball
1+ if has nix; then
2+ watch_file ../flake.nix
3+ watch_file ../flake.lock
4+ use flake ../.# glueball
35fi
6+
7+ source_env_if_exists .envrc.local
You can’t perform that action at this time.
0 commit comments