summaryrefslogtreecommitdiff
path: root/derivations/windsurf/update-shell.nix
blob: 366cef64801dbcec1727066f98634e802d45a1da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  lib,
  pkgs,
  ...
}:
lib.mkShell {
  packages = with pkgs; [
    bash
    curl
    gawk
    gnugrep
    gnused
    jq
    nix
    nix-prefetch
    nix-prefetch-scripts
  ];
}