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

14 lines
154 B
Nix
Raw Permalink 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
2022-02-14 14:22:40 +00:00
dasel
difftastic
2021-12-15 19:43:52 +00:00
jq
2022-04-21 16:55:35 +00:00
nix-prefetch-git
2021-12-06 22:35:29 +00:00
nixpkgs-fmt
];
}