ops/nixos: fix systemPathJSON by using writeText instead of toFile

This commit is contained in:
Luke Granger-Brown 2021-03-13 17:05:49 +00:00
parent b01c15b85f
commit 2f183e56dd

View file

@ -66,5 +66,5 @@ in systemDrvs // {
netboot = netbootSystem.config.system.build.pixiecore;
systemPathJSON = builtins.toFile "systems.json" (builtins.toJSON systemDrvs);
systemPathJSON = pkgs.writeText "systems.json" (builtins.toJSON systemDrvs);
}