diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-02 13:30:28 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-02 13:30:28 -0500 |
| commit | b5e3e6f12b41a9a1133744e139c5aa47d1bee006 (patch) | |
| tree | 460b2222c3823258eed2af239d3f78905141a538 /flake.nix | |
| parent | cfa595c7264a3618759d8382de0996017c558e26 (diff) | |
| download | home-b5e3e6f12b41a9a1133744e139c5aa47d1bee006.tar.gz | |
update before i break everything
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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; |