nixos/users/malte/unison.nix

11 lines
271 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [x11_ssh_askpass openssh];
services.unison = {
enable = true;
pairs.university = {
roots = ["/home/malte/Uni" "ssh://malte@helix-pomatia//home/malte/Uni"];
commandOptions = {auto = "true";};
};
};
}