From aa0ffa8aa2850867b6b36e4f224e5879209f7243 Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 21 Jun 2022 17:05:48 +0200 Subject: [PATCH] lib/config: update extraArgs to _module.args --- nix/lib/config/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/lib/config/default.nix b/nix/lib/config/default.nix index b7bfce3..41e0ba3 100644 --- a/nix/lib/config/default.nix +++ b/nix/lib/config/default.nix @@ -4,14 +4,14 @@ let result = pkgs.lib.evalModules { - args = { - inherit self pkgs; - }; modules = [ ( { lib, ... }: with lib; { + config._module.args = { + inherit self pkgs; + }; options.assertions = mkOption { type = with types; listOf unspecified; internal = true;