Files
nvim-config/flake.nix
2026-05-09 02:10:48 +02:00

23 lines
458 B
Nix

{
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
];
};
};
}