next-url-shortener/shell.nix
2024-02-15 13:23:35 -08:00

9 lines
121 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
git
btop
lazygit
micro
];
}