nix: move overlays section from flake-utils

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-24 23:27:30 +03:00
parent 38cf6958e8
commit 96df527d73
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
1 changed files with 7 additions and 4 deletions

View File

@ -133,6 +133,13 @@
};
outputs = inputs @ { self, nixpkgs, utils, ... }:
{
overlays = {
default = final: prev: {
myneovim = prev.callPackage ./. { };
};
};
} //
utils.lib.eachDefaultSystem (system:
let
inputPlugins = [
@ -206,9 +213,5 @@
pkgs.stylua # lua formatter
];
};
overlays = f: p: {
myneovim = neovim;
};
});
}