forked from suderman/neovim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
53 lines (44 loc) · 1.65 KB
/
flake.nix
File metadata and controls
53 lines (44 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
description = "my nvf neovim flake";
inputs = {
# Nix Packages
# <https://search.nixos.org/packages>
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
# Switched to stable until this is resovled
# https://github.com/NotAShelf/nvf/issues/1312
# Map folder structure to flake outputs
# <https://github.com/numtide/blueprint>
blueprint.url = "github:numtide/blueprint";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
# Neovim
# <https://notashelf.github.io/nvf>
nvf.url = "github:notashelf/nvf/v0.8";
nvf.inputs.nixpkgs.follows = "nixpkgs";
# <https://github.com/olimorris/codecompanion.nvim>
codecompanion-nvim.url = "github:olimorris/codecompanion.nvim";
codecompanion-nvim.flake = false;
# <https://github.com/franco-ruggeri/codecompanion-spinner.nvim>
codecompanion-spinner-nvim.url = "github:franco-ruggeri/codecompanion-spinner.nvim";
codecompanion-spinner-nvim.flake = false;
# <https://github.com/franco-ruggeri/codecompanion-lualine.nvim>
codecompanion-lualine-nvim.url = "github:franco-ruggeri/codecompanion-lualine.nvim";
codecompanion-lualine-nvim.flake = false;
# <https://ravitemer.github.io/mcphub.nvim>
mcphub-nvim.url = "github:ravitemer/mcphub.nvim";
mcphub-nvim.inputs.nixpkgs.follows = "nixpkgs";
# <https://github.com/ravitemer/mcp-hub>
mcp-hub.url = "github:ravitemer/mcp-hub";
mcp-hub.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: {
inherit
(inputs.blueprint {inherit inputs;})
devShells
packages
formatter
checks
lib
;
};
}