mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
flake-parts-lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
mkOption
|
|
types
|
|
;
|
|
inherit
|
|
(flake-parts-lib)
|
|
mkSubmoduleOptions
|
|
;
|
|
in {
|
|
options = {
|
|
flake = mkSubmoduleOptions {
|
|
libOverlays = mkOption {
|
|
# uniq -> ordered: https://github.com/NixOS/nixpkgs/issues/147052
|
|
# also update description when done
|
|
type = types.lazyAttrsOf (types.uniq (types.functionTo (types.functionTo (types.lazyAttrsOf types.unspecified))));
|
|
# This eta expansion exists for the sole purpose of making nix flake check happy.
|
|
apply = lib.mapAttrs (_k: f: final: prev: f final prev);
|
|
default = {};
|
|
example = lib.literalExpression or lib.literalExample ''
|
|
{
|
|
default = final: prev: {};
|
|
}
|
|
'';
|
|
description = ''
|
|
An attribute set of lib overlays, they're similar to normal
|
|
[overlays](https://nixos.org/manual/nixpkgs/stable/#chap-overlays).
|
|
|
|
Note that the overlays themselves are not mergeable. While overlays
|
|
can be composed, the order of composition is significant, but the
|
|
module system does not guarantee sufficiently deterministic
|
|
definition ordering, across versions and when changing `imports`.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|