diff --git a/third_party/home-manager/copy.bara.sky b/third_party/home-manager/copy.bara.sky new file mode 100644 index 0000000000..ee305ab66a --- /dev/null +++ b/third_party/home-manager/copy.bara.sky @@ -0,0 +1,21 @@ +core.workflow( + name = "default", + origin = git.github_origin( + url = "https://github.com/nix-community/home-manager.git", + ref = "master", + ), + destination = hg.destination( + url = "file:///home/lukegb/depot", + fetch = "default", + push = "default", + ), + destination_files = glob(["third_party/home-manager/**"], exclude = [ + "third_party/home-manager/copy.bara.sky", + "third_party/home-manager/patches/**", + ]), + authoring = authoring.pass_thru("Default email "), + transformations = [ + patch.apply(patches = []), + core.move("", "third_party/home-manager"), + ], +)