14 lines
166 B
Nix
14 lines
166 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
packages = [
|
|
bat
|
|
curl
|
|
dasel
|
|
difftastic
|
|
jq
|
|
nix-prefetch-github
|
|
nixpkgs-fmt
|
|
];
|
|
}
|