nix: move overlays section from flake-utils
This commit is contained in:
parent
38cf6958e8
commit
96df527d73
1 changed files with 7 additions and 4 deletions
11
flake.nix
11
flake.nix
|
@ -133,6 +133,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ { self, nixpkgs, utils, ... }:
|
outputs = inputs @ { self, nixpkgs, utils, ... }:
|
||||||
|
{
|
||||||
|
overlays = {
|
||||||
|
default = final: prev: {
|
||||||
|
myneovim = prev.callPackage ./. { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} //
|
||||||
utils.lib.eachDefaultSystem (system:
|
utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
inputPlugins = [
|
inputPlugins = [
|
||||||
|
@ -206,9 +213,5 @@
|
||||||
pkgs.stylua # lua formatter
|
pkgs.stylua # lua formatter
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
overlays = f: p: {
|
|
||||||
myneovim = neovim;
|
|
||||||
};
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue