os/overlays/default.nix

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

36 lines
817 B
Nix
Raw Permalink Normal View History

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