This commit is contained in:
Arthur Wambst 2025-02-19 11:15:35 +01:00
parent d5d9aae359
commit c482febd69

20
flake.nix Normal file
View File

@ -0,0 +1,20 @@
# flake.nix
{
description = "My own Neovim flake";
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs";
};
neovim = {
url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, neovim }: {
packages.x86_64-linux.default = neovim.packages.x86_64-linux.neovim;
apps.x86_64-linux.default = {
type = "app";
program = "${neovim.packages.x86_64-linux.neovim}/bin/nvim";
};
};
}