mirror of
https://github.com/lloeki/vimfiles.git
synced 2025-12-06 05:24:39 +01:00
23 lines
577 B
Nix
23 lines
577 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/master";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, flake-compat }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
vim
|
|
neovim
|
|
vim-language-server
|
|
vim-vint
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|