summaryrefslogtreecommitdiff
path: root/shenvs/tabas.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-08-25 15:21:33 -0600
committerAlejandro Soto <alejandro@34project.org>2022-08-25 19:14:50 -0600
commit64e6052f5f24213141faba155b896c6beaef26f4 (patch)
tree7ae02eab6d26277ae14aef65120fd7808a01a0b7 /shenvs/tabas.nix
parent6bf883a27dadb434aedfad9f6538a83ef02515c9 (diff)
home: switch old-style shenvs to hm-isolation
Diffstat (limited to 'shenvs/tabas.nix')
-rw-r--r--shenvs/tabas.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/shenvs/tabas.nix b/shenvs/tabas.nix
deleted file mode 100644
index fdb16ca..0000000
--- a/shenvs/tabas.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-pkgs: let
- odbcinst =
- { lib, writeTextDir, unixODBCDrivers }:
- with lib; let
- driver = unixODBCDrivers.msodbcsql17;
- odbcinst."${driver.fancyName}" = {
- Description = driver.meta.description;
- Driver = "${driver}/${driver.driver}";
- };
- in writeTextDir "odbcinst.ini" (generators.toINI {} odbcinst);
-in {
- paths = with pkgs; [
- dotnet-sdk
- nodejs
- nodePackages.npm
- postgresql_14
- sqlite
- local.mssql-tools
- local.rqlite
- ];
-
- enter = ''
- export PGDATA=$HOME/vtmp/psql
- export DOTNET_ROOT=${pkgs.dotnet-sdk}
- export ODBCSYSINI=${pkgs.callPackage odbcinst {}}
- export PATH="$PATH:$HOME/.dotnet/tools:$HOME/.npm-packages/bin";
-
- alias straviasql='sqlcmd -S itcr.database.windows.net -U pmaestro -d straviatec'
- '';
-}