9 lines
172 B
Nix
9 lines
172 B
Nix
# Install git, sops, Docker, bash,
|
|
|
|
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
git sops docker
|
|
tree btop
|
|
bat fd eza fzf
|
|
];
|
|
} |