diff options
Diffstat (limited to 'shell.nix')
-rwxr-xr-x | shell.nix | 35 |
1 files changed, 18 insertions, 17 deletions
@@ -1,27 +1,28 @@ -#!/usr/bin/env -S nix-shell --pure +#!/usr/bin/env -S nix-shell --impure +#!nix-shell -i bash { pkgs ? import <nixpkgs> {} }: -pkgs.mkShell { - buildInputs = [( - with pkgs; [ - ruby_3_1 - rubyPackages_3_1.rake - rubyPackages_3_1.sqlite3 - rubyPackages_3_1.thor +with pkgs; + mkShell { + buildInputs = [ + ruby + rubyPackages.rake + rubyPackages.sqlite3 + rubyPackages.thor sqlite + graphicsmagick unzip xz zip openssl - #texlive-combined-full + #texliveFull # texliveTeTeX nixFlakes validatePkgConfig + nix-output-monitor + nix-tree jq git - ] - )]; - shellHook = '' - if [[ -e ".envrc" ]]; then - source .envrc - fi - ''; -} + #starship + ]; + shellHook = '' + ''; + } |