nixconfigs/home/config.nix

37 lines
821 B
Nix
Raw Normal View History

2018-09-26 17:10:52 +02:00
let
2018-09-26 23:38:53 +02:00
lib = (import <nixpkgs> {}).lib;
2018-09-26 17:10:52 +02:00
in
{
2018-09-26 23:38:53 +02:00
clementine.spotify = false;
whitelistedLicenses = with lib.licenses; [ wtfpl ];
2018-10-14 16:57:02 +02:00
packageOverrides = pkgs: with pkgs;
let
myVimBundle = with pkgs.vimPlugins; {
# loaded on start
start = [
ale
ctrlp
deoplete-jedi
fugitive
nerdtree
nerdtree-git-plugin
supertab
vim-pandoc
vim-pandoc-syntax
vim-nix
];
};
in
rec {
# build with debug symbols and in debug mode (less optimized)
myVim = vim_configurable.customize {
name = "vim-with-plugins";
vimrcConfig.packages.myVimPackage = myVimBundle;
};
opencvDebug = enableDebugging ((opencv3.override {enablePython=true; enableGtk3=true; enableDocs=true; pythonPackages=pkgs.python3Packages; }).overrideAttrs (oldAttrs: rec {cmakeBuildType = "Debug";}));
};
}