cfg/mod/pc-common/sync.nix
2025-05-29 23:13:35 +02:00

17 lines
319 B
Nix

{ pkgs, ... }:
{
home.services.unison = {
enable = true;
package = pkgs.unison;
pairs = {
"docs".roots = [
"/home/hd/Documents"
"ssh://roam//home/hd/Documents"
];
"desktop".roots = [
"/home/hd/Desktop"
"ssh://roam//home/hd/Desktop"
];
};
};
}