aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rwxr-xr-x[-rw-r--r--]shell.nix32
1 files changed, 27 insertions, 5 deletions
diff --git a/shell.nix b/shell.nix
index 34300f62..8ca1596f 100644..100755
--- a/shell.nix
+++ b/shell.nix
@@ -1,6 +1,28 @@
+#!/usr/bin/env -S nix-shell --impure
+#!nix-shell -i bash
{ pkgs ? import <nixpkgs> {} }:
-pkgs.mkShell {
- buildInputs = [
- (import ./packages.nix { inherit pkgs; })
- ];
-}
+with pkgs;
+ mkShell {
+ buildInputs = [
+ ruby
+ rubyPackages.rake
+ rubyPackages.sqlite3
+ rubyPackages.thor
+ sqlite
+ graphicsmagick
+ unzip
+ xz
+ zip
+ openssl
+ #texliveFull # texliveTeTeX
+ nixFlakes
+ validatePkgConfig
+ nix-output-monitor
+ nix-tree
+ jq
+ git
+ #starship
+ ];
+ shellHook = ''
+ '';
+ }