From f16465c1e511de815cd81a0ce41b80cef8c8eaae Mon Sep 17 00:00:00 2001 From: coltonpierson Date: Mon, 25 Sep 2023 22:01:45 -0700 Subject: [PATCH] clean up devenv --- devenv.nix | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/devenv.nix b/devenv.nix index 9372791..9e7fa78 100644 --- a/devenv.nix +++ b/devenv.nix @@ -6,18 +6,9 @@ pkgs.curl pkgs.git pkgs.jq - pkgs.kubectl pkgs.protobuf - pkgs.pulumi - pkgs.awscli2 pkgs.protobuf3_21 - pkgs.kubernetes-helm - pkgs.flyway - pkgs.argo-rollouts - pkgs.argocd pkgs.nodejs_20 - pkgs.tilt - pkgs.aws-sam-cli pkgs.xdot ] ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [ frameworks.Security @@ -25,8 +16,7 @@ ]); # https://devenv.sh/scripts/ - scripts.hello.exec = "echo Welcome to Thousand Birds"; - scripts.tbngrok.exec = "ngrok http --domain=thousandbirds.ngrok.dev 3002"; + scripts.hello.exec = "echo Welcome to the Chidori dev enviroment"; scripts.run-ui.exec = "(cd toolchain/prompt-graph-ui && yarn run tauri dev"; enterShell = '' @@ -58,20 +48,5 @@ ''; }; - services.temporal = { - enable = true; - - port = 17233; - - namespaces = [ "mynamespace" ]; - - state = { - ephemeral = true; - sqlite-pragma = { - journal_mode = "wal"; - }; - }; - }; - # See full reference at https://devenv.sh/reference/options/ }