1
0
Fork 0
dotfiles/programs/nvim/update-shell.nix

15 lines
166 B
Nix
Raw Normal View History

2021-12-06 22:35:29 +00:00
{ pkgs ? import <nixpkgs> { } }:
2021-12-18 23:12:55 +00:00
with pkgs;
2021-12-06 22:35:29 +00:00
2021-12-18 23:12:55 +00:00
mkShell {
packages = [
2021-12-06 22:35:29 +00:00
bat
2021-12-15 19:43:52 +00:00
curl
2022-02-14 14:22:40 +00:00
dasel
difftastic
2021-12-15 19:43:52 +00:00
jq
2021-12-06 22:35:29 +00:00
nix-prefetch-github
nixpkgs-fmt
];
}