This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/flake.nix

20 lines
426 B
Nix
Raw Normal View History

2022-09-15 01:22:06 +03:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
2022-09-15 01:29:25 +03:00
neovim = pkgs.callPackage ./. { };
2022-09-15 01:22:06 +03:00
in
{
devShells.default = pkgs.mkShell {
packages = [ neovim ];
};
});
}