aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-03-02 13:30:28 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-03-02 13:30:28 -0500
commitb5e3e6f12b41a9a1133744e139c5aa47d1bee006 (patch)
tree460b2222c3823258eed2af239d3f78905141a538 /flake.nix
parentcfa595c7264a3618759d8382de0996017c558e26 (diff)
downloadhome-b5e3e6f12b41a9a1133744e139c5aa47d1bee006.tar.gz
update before i break everything
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 4758390..19e901e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,11 +8,14 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
-
nixgl = {
url = "github:nix-community/nixgl";
inputs.nixpkgs.follows = "nixpkgs";
};
+ neovim-nightly = {
+ url = "github:nix-community/neovim-nightly-overlay";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
};
outputs =
@@ -21,12 +24,14 @@
nixpkgs,
home-manager,
nixgl,
+ neovim-nightly,
...
}:
let
system = "x86_64-linux";
overlays = [
inputs.nixgl.overlays.default
+ inputs.neovim-nightly.overlays.default
];
pkgs = import nixpkgs {
config.allowUnfree = true;