refactor: move lib out of modules

This commit is contained in:
NotAShelf 2023-02-06 21:57:35 +03:00
commit 89be2b9d37
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
8 changed files with 334 additions and 0 deletions

13
lib/stdlib-extended.nix Normal file
View file

@ -0,0 +1,13 @@
# From home-manager: https://github.com/nix-community/home-manager/blob/master/modules/lib/stdlib-extended.nix
# Just a convenience function that returns the given Nixpkgs standard
# library extended with the HM library.
nixpkgsLib: let
mkNvimLib = import ./.;
in
nixpkgsLib.extend (self: super: {
nvim = mkNvimLib {lib = self;};
# For forward compatibility.
literalExpression = super.literalExpression or super.literalExample;
literalDocBook = super.literalDocBook or super.literalExample;
})