Malte Tammena
9bada411db
To prepare for an addiotional /users/modules which can be shared between users.
13 lines
280 B
Nix
13 lines
280 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"; };
|
|
};
|
|
};
|
|
}
|