nixos: Test setup with public networking

This commit is contained in:
2022-05-28 22:59:50 +01:00
parent 32421f7af1
commit e6e4a1d38e
6 changed files with 98 additions and 51 deletions

View File

@@ -11,7 +11,7 @@ let
toBool = val: if val then "yes" else "no";
serialize = val: with lib.types;
if str.check val then val
if str.check val then val
else if int.check val then toString val
else if path.check val then toString val
else if bool.check val then toBool val