[Nix-dev] Configuring vim with override

2016-03-01 Thread Nikita Karetnikov
I'd like to enable cscope and clipboard support in vim by editing only the configuration.nix file. If I understand the NixOS manual correctly, it should look like this: environment.systemPackages = [ (pkgs.emacs.override { gtk = pkgs.gtk3; }) ]; https://nixos.org/nixos/manual/index.html#sec-cust

Re: [Nix-dev] Configuring vim with override

2016-03-01 Thread Jookia
On Wed, Mar 02, 2016 at 12:08:05AM +0300, Nikita Karetnikov wrote: > I'd like to enable cscope and clipboard support in vim by editing only the > configuration.nix file. If I understand the NixOS manual correctly, it should > look like this: > > [...] > > No luck, though. What's the right way? v

Re: [Nix-dev] Configuring vim with override

2016-03-02 Thread Nikita Karetnikov
Wed, Mar 02, 2016 at 10:00:00AM +1100, Jookia wrote: > vim_configurable is used like this: > > myVim = pkgs.vim_configurable.merge { > features = "huge"; # one of tiny, small, normal, big or huge > gui = "gtk"; > cfg = { > pythonSupport = true; > python3Support = true;