move otherArguments to right side of merge

for overlay list ordering, otherArguments should have priority
This commit is contained in:
Pacman99 2021-05-02 11:15:44 -07:00
parent 30412b16b9
commit deb47dbfae
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@
"utils": "utils_2" "utils": "utils_2"
}, },
"locked": { "locked": {
"narHash": "sha256-9JsKDtgLSmAkcaKRD4Ycttip1jpO9dVVaRwclWH0V8E=", "narHash": "sha256-AnasH9JbhPD+sR30YP+1IvNoO0S4hUcSraJwvXIaIpo=",
"path": "./lib", "path": "./lib",
"type": "path" "type": "path"
}, },

View file

@ -40,7 +40,6 @@ let
hostDefaults = stripHost cfg.nixos.hostDefaults; hostDefaults = stripHost cfg.nixos.hostDefaults;
in in
lib.systemFlake (lib.mergeAny lib.systemFlake (lib.mergeAny
otherArguments
{ {
inherit self inputs hosts; inherit self inputs hosts;
inherit (cfg) channelsConfig supportedSystems; inherit (cfg) channelsConfig supportedSystems;
@ -99,4 +98,5 @@ lib.systemFlake (lib.mergeAny
pkgs = getDefaultChannel channels; pkgs = getDefaultChannel channels;
}; };
} }
otherArguments # for overlays list order
) )