init
This commit is contained in:
parent
d5d9aae359
commit
c482febd69
20
flake.nix
Normal file
20
flake.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user