zaphyra's git: nixfiles

zaphyra and void's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
{ ... }:

{

  home.persistence."/nix/persist/home/zaphyra".files = [
    "ssh/.ssh/known_hosts"
  ];

  programs.ssh = {
    enable = true;
    compression = true;

    controlMaster = "auto";
    controlPersist = "2m";

    matchBlocks = {
      "zaphyra-git" = {
        user = "git";
        hostname = "git.zaphyra.eu";
      };
    };
  };

}