lib.readFact: fix argument order #1723

Merged
clan-bot merged 1 commits from Mic92-debug-facts into main 2024-07-09 13:28:23 +00:00

View File

@ -9,7 +9,7 @@ let
readFact =
machine: fact:
let
path = getFactPath fact machine;
path = getFactPath machine fact;
in
if builtins.pathExists path then builtins.readFile path else null;