9 lines
121 B
Nix
9 lines
121 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
git
|
|
btop
|
|
lazygit
|
|
micro
|
|
];
|
|
}
|