17 lines
406 B
Nix
17 lines
406 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: let
|
|
inherit (pkgs) system;
|
|
nixvim = inputs.nixvim.legacyPackages.${system};
|
|
icons = import ./config/icons.nix;
|
|
pkgsMaster = inputs.master.legacyPackages.${system};
|
|
nixvimModule = {
|
|
pkgs = inputs.unstable.legacyPackages.${system};
|
|
module = import ./config;
|
|
extraSpecialArgs = {inherit icons pkgsMaster;};
|
|
};
|
|
in
|
|
nixvim.makeNixvimWithModule nixvimModule
|