my neovim configuration
0
fork

Configure Feed

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

maybe working nix pkg

authored by seiso.moe and committed by

blu ccefcc69 0c355f38

+26
+26
flake.nix
··· 1 + { 2 + description = "blu's neovim config"; 3 + 4 + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 5 + 6 + outputs = { self, nixpkgs }: 7 + let 8 + systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; 9 + forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system}); 10 + in { 11 + packages = forAllSystems (pkgs: { 12 + default = pkgs.neovim.override { 13 + configure = { 14 + customRC = '' 15 + set runtimepath+=${self} 16 + luafile ${self}/init.lua 17 + ''; 18 + }; 19 + }; 20 + }); 21 + 22 + overlays.default = final: prev: { 23 + blu-nvim = self.packages.${prev.system}.default; 24 + }; 25 + }; 26 + }