cfg/pc/sync.nix
2025-05-31 00:20:26 +02:00

16 lines
293 B
Nix

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