nix-samples/simple-shell/shell2.nix

10 lines
88 B
Nix
Raw Normal View History

2024-03-17 17:33:12 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell
{
packages = [
neovim
];
}