nixconfigs/home/overlays.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2020-02-16 21:58:51 +01:00
[
(
self: super:
rec {
2020-06-09 22:26:02 +02:00
#jami-ring-daemon = super.qt5.callPackage ./ov/jami/ring-daemon.nix {};
myVim = with super; vim_configurable.customize {
2020-02-16 21:58:51 +01:00
# executable/ package name
name = "vim";
vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; {
# loaded on start
start = [
ale
2020-02-27 23:24:22 +01:00
base16-vim
2020-02-16 21:58:51 +01:00
LanguageClient-neovim
ctrlp
direnv-vim
fugitive
2020-02-27 23:24:22 +01:00
haskell-vim
2020-02-16 21:58:51 +01:00
jedi-vim
nerdtree
nerdtree-git-plugin
supertab
vim-pandoc
vim-pandoc-syntax
vim-nix
vim-jinja
];
};
vimrcConfig.customRC = builtins.readFile ./vimrc;
2020-02-16 21:58:51 +01:00
};
# build with debug symbols and in debug mode (less optimized)
opencvDebug = with super; enableDebugging ((opencv3.override { enablePython = true; enableGtk3 = true; enableDocs = true; pythonPackages = pkgs.python3Packages; }).overrideAttrs (oldAttrs: rec { cmakeBuildType = "Debug"; }));
#gnutls = super.callPackage ./ov/gnutls {inherit (super.darwin.apple_sdk.frameworks) Security;};
}
)
]