2025-02-13 13:19:54 +01:00
|
|
|
{ writeShellApplication, coreutils, openssh, util-linux }:
|
2025-02-13 12:06:37 +01:00
|
|
|
|
|
|
|
writeShellApplication {
|
|
|
|
name = "rm-sync";
|
|
|
|
|
2025-02-13 13:19:54 +01:00
|
|
|
runtimeInputs = [ coreutils openssh util-linux ];
|
2025-02-13 12:06:37 +01:00
|
|
|
|
|
|
|
text = builtins.readFile ./rm-sync.sh;
|
|
|
|
}
|