Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update neovim

+7 -2
+4 -1
flake.nix
··· 80 80 unstable = import nixpkgs-unstable { 81 81 inherit system; 82 82 overlays = overlays ++ [ 83 + # Use the neovim overlay for all hosts 83 84 (import ./overlays/neovim.nix) 84 85 ]; 85 86 config.allowUnfree = true; ··· 193 194 (final: prev: { 194 195 claude-code = claude-code.packages.aarch64-darwin.claude-code; 195 196 }) 196 - (import ./overlays/neovim.nix) 197 197 ]; 198 198 }; 199 199 # Specify your home configuration modules here, for example, ··· 210 210 unstable = import nixpkgs-unstable { 211 211 system = "aarch64-darwin"; 212 212 config.allowUnfree = true; 213 + overlays = [ 214 + (import ./overlays/neovim.nix) 215 + ]; 213 216 }; 214 217 }; 215 218 };
+3 -1
overlays/neovim.nix
··· 1 1 final: prev: { 2 2 neovim-unwrapped = prev.neovim-unwrapped.overrideAttrs (old: rec { 3 - version = "0.12.1"; 3 + version = "0.12.2"; 4 4 src = final.fetchFromGitHub { 5 5 owner = "neovim"; 6 6 repo = "neovim"; 7 7 tag = "v${version}"; 8 8 hash = "sha256-cbFM5TKGmhEDsdhMvGzMyn0Js0MJwdMwXDkzQcdw/TM="; 9 9 }; 10 + doCheck = false; 11 + doInstallCheck = false; 10 12 }); 11 13 }