ops/nixos: fix systemPathJSON by using writeText instead of toFile
This commit is contained in:
parent
b01c15b85f
commit
2f183e56dd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue