Merge pull request 'lib.readFact: fix argument order' (#1723) from Mic92-debug-facts into main

This commit is contained in:
clan-bot
2024-07-09 13:28:22 +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;