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

14 lines
154 B
Nix
Raw Normal View History

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