os/overlays/default.nix
teutat3s c95e0680e6
overlays: add wf-recorder ffmpeg fix, remove sway,
graphical: hardware.opengl renamed to hardware.graphics
2024-11-05 15:31:42 +01:00

47 lines
1.1 KiB
Nix

{
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
{
#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)
(import ./wf-recorder.nix)
];
}
);
};
};
}