HomeFiles.yqls 224 B

12345678910
  1. # canonize yson here
  2. (
  3. #comment
  4. (let config (DataSource 'config))
  5. (let res_sink (DataSink 'result))
  6. (let world (Write! world res_sink (Key) (Files '/home) '('('type))))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )