cfg/pc/sync.nix
Henri Dohmen b61bb970a5 refactor
2025-05-30 22:46:27 +02:00

16 lines
292 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"
];
};
};
}