Init shell.nix

This commit is contained in:
Joey Hafner 2024-10-05 12:33:58 -07:00
parent 9439c21bf3
commit aa6d3acf88
No known key found for this signature in database

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
# Install git, sops, Docker, bash,
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
packages = with pkgs; [
git sops docker
tree btop
bat fd eza fzf
];
}