2024-08-24 22:05:50 -07:00
|
|
|
{
|
|
|
|
description = "Personal Neovim configuration.";
|
|
|
|
|
|
|
|
inputs = {
|
2024-08-24 22:17:41 -07:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
2024-08-24 22:05:50 -07:00
|
|
|
nixvim = {
|
|
|
|
url = "github:nix-community/nixvim";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-24 22:17:41 -07:00
|
|
|
outputs = {
|
2024-08-24 22:05:50 -07:00
|
|
|
nixvim,
|
2024-08-24 22:17:41 -07:00
|
|
|
nixpkgs,
|
2024-08-24 22:05:50 -07:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
homeManagerModules.default = {
|
2024-08-24 23:04:20 -07:00
|
|
|
imports = [nixvim.homeManagerModules.nixvim ./homeManagerModule];
|
2024-08-24 22:05:50 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|