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