use optionals

This commit is contained in:
Daylin Morgan 2024-08-08 14:02:40 -05:00
parent 52fb1204d6
commit fc0f011be5
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -12,6 +12,7 @@ let
mkOption
literalExpression
types
optionals
;
cfg = config.oizys.nix-ld;
@ -103,8 +104,7 @@ in
config =
let
libs =
defaultLibraries ++ cfg.extra-libraries ++ (if cfg.overkill.enable then overkillLibraries else [ ]);
libs = defaultLibraries ++ cfg.extra-libraries ++ (optionals cfg.overkill.enable overkillLibraries);
in
mkIf cfg.enable {
programs.nix-ld = enabled // {