馃 my neovim config:)
1
fork

Configure Feed

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

at main 26 lines 725 B view raw
1{ 2 pkgs ? import <nixpkgs> { 3 inherit system; 4 overlays = [ ]; 5 config.allowUnfree = true; 6 }, 7 lib ? pkgs.lib, 8 system ? builtins.currentSystem, 9 10 # wow this is hacky 11 inputs, 12 self ? inputs.self, 13 ivyVersion ? self.shortRev or self.dirtyRev or "unknown", 14}: 15let 16 packages = lib.makeScope pkgs.newScope (self: { 17 neovim = self.callPackage ./pkgs/neovim/package.nix { inherit (inputs) neovim-src; }; 18 ivy = self.callPackage ./pkgs/ivy/package.nix { 19 inherit ivyVersion; 20 neovim-unwrapped = self.neovim; 21 }; 22 ivyPlugins = self.callPackage ./pkgs/ivy-plugins/package.nix { }; 23 inherit (inputs.gift-wrap.legacyPackages.${pkgs.stdenv.hostPlatform.system}) wrapNeovim; 24 }); 25in 26packages