mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
21 lines
396 B
Nix
21 lines
396 B
Nix
{
|
|
description = "Personal Neovim configuration.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
nixvim = {
|
|
url = "github:nix-community/nixvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
nixvim,
|
|
nixpkgs,
|
|
...
|
|
}: {
|
|
homeManagerModules.default = {
|
|
imports = [nixvim.homeManagerModules.nixvim ./homeManagerModule];
|
|
};
|
|
};
|
|
}
|