nix-samples/simple-shell/shell2.nix
2024-03-17 17:33:12 +01:00

10 lines
88 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell
{
packages = [
neovim
];
}