summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 92191bb..bbc98ad 100644
--- a/flake.nix
+++ b/flake.nix
@@ -46,7 +46,11 @@
inherit lib system;
specialArgs = {inherit inputs;};
modules = extraModules ++ [
- (import ./overlays/vimPlugins.nix {inherit pkgs;})
+ ({config, ... }: {
+ nixpkgs.overlays = with lib; [(composeManyExtensions [
+ (import ./overlays/vimPlugins.nix {inherit pkgs;})
+ ])];
+ })
] ++ (attrValues
(attrsets.mergeAttrsList (map modulesIn [
./profiles/core