os/overlays/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
749 B
Nix
Raw Normal View History

2024-01-06 09:46:10 +00:00
{
self,
lib,
inputs,
...
}: {
flake = {
nixosModules = rec {
overlays = ({ ... }: {
nixpkgs.overlays = [
(final: prev:
let
unstable = import inputs.unstable {
system = prev.system;
};
master = import inputs.master {
system = prev.system;
};
in
{
direnv = unstable.direnv;
nix-direnv = unstable.nix-direnv;
#vimPlugins = prev.vimPlugins // {inherit (unstable.vimPlugins) nvim-lspconfig;};
})
(import ../pkgs)
(import ./blesh.nix)
(import ./nix-index.nix)
(import ./neovim-plugins.nix)
];
});
};
};
}