os/overlays/default.nix

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

46 lines
1.1 KiB
Nix
Raw Normal View History

{
self,
lib,
inputs,
...
}:
{
flake = {
nixosModules = rec {
overlays = (
{ ... }:
{
nixpkgs.overlays = [
(
final: prev:
let
unstable = import inputs.unstable {
system = prev.system;
config.allowUnfreePredicate =
pkg:
builtins.elem (prev.lib.getName pkg) [
"1password"
"1password-cli"
"slack"
];
};
in
{
2024-05-27 08:56:46 +00:00
neovim-unwrapped = unstable.neovim-unwrapped;
vimPlugins = unstable.vimPlugins;
#vimPlugins = prev.vimPlugins // {inherit (unstable.vimPlugins) nvim-lspconfig;};
}
)
(import ../pkgs)
(import ./blesh.nix)
(import ./mdbook-multilang.nix inputs)
(import ./nix-index.nix)
(import ./prr.nix)
(import ./neovim-plugins.nix)
];
}
);
};
};
}