aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-27 12:48:15 +0100
committerAkshay <[email protected]>2021-10-27 12:48:15 +0100
commit493c5db8095ce5ec4f595918d5a62086279486cb (patch)
tree8f9a0477c4b5136a4949e97339f114fa320b75c5 /flake.nix
parentc3ab7ec9fa265bae3f6ced73e6547499a089caa7 (diff)
add statix to neovim
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 330ca03..b454cc9 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,6 +9,7 @@
9 inputs.nixpkgs.follows = "nixpkgs"; 9 inputs.nixpkgs.follows = "nixpkgs";
10 }; 10 };
11 neovim.url = "github:nix-community/neovim-nightly-overlay"; 11 neovim.url = "github:nix-community/neovim-nightly-overlay";
12 statix.url = "github:nerdypepper/statix";
12 }; 13 };
13 14
14 outputs = 15 outputs =
@@ -17,11 +18,13 @@
17 , nixos-hardware 18 , nixos-hardware
18 , home-manager 19 , home-manager
19 , neovim 20 , neovim
21 , statix
20 , ... 22 , ...
21 } @ inputs: { 23 } @ inputs: {
22 24
23 overlays = { 25 overlays = {
24 nvim-nightly = neovim.overlay; 26 nvim-nightly = neovim.overlay;
27 statix = statix.overlay;
25 }; 28 };
26 29
27 nixosConfigurations = { 30 nixosConfigurations = {
@@ -46,7 +49,6 @@
46 ]; 49 ];
47 }; 50 };
48 }; 51 };
49
50 }; 52 };
51 53
52} 54}