modules: reorder args

This commit is contained in:
NotAShelf 2024-05-16 19:11:18 +03:00
parent eefc7a9d1d
commit 1ce25d7ca3
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ inputs: {
# check can be disabled while calling this file is called
# to avoid checking in all modules
nvimModules = import ./modules.nix {
inherit check pkgs;
inherit pkgs check;
lib = extendedLib;
};

View File

@ -1,7 +1,7 @@
{
check ? true,
pkgs,
lib,
check ? true,
}: let
inherit (lib.modules) mkDefault;
inherit (lib.lists) concatLists;