Move custom Vim plugins back to an overlay

This commit is contained in:
Oliver Davies 2024-10-25 00:24:33 +01:00
parent 216a1d3321
commit 4da89a329f
4 changed files with 149 additions and 140 deletions

View file

@ -11,10 +11,14 @@ in
{
imports = [ ../../modules/nixos/desktop ];
nixpkgs.config = {
allowUnfree = true;
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ "electron-27.3.11" ];
permittedInsecurePackages = [ "electron-27.3.11" ];
};
overlays = [ (import "${self}/overlays/vim-plugins-overlay.nix") ];
};
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];