{ description = "A flake for my entire neovim configuration and setup"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; }; outputs = { self, nixpkgs }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { packages.${system}.default = pkgs.neovim; devShells.${system}.default = pkgs.mkShell { packages = [ pkgs.neovim ]; }; }; }