ctucx.git: nixfiles

ctucx' 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 
25 
26 
27 
28 
29 
30 
31 
{ config, lib, ... }:

let
  cfg = config.ctucxConfig.programs.ssh;

in {

  options = {
    ctucxConfig.programs.ssh = {
      enable = lib.mkEnableOption "ssh";
    };
  };

  config = lib.mkIf cfg.enable {
    home-manager.users.katja.programs.ssh = {
      enable         = true;
      compression    = true;

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

      matchBlocks = {
        "ctucx-git" = {
          user     = "git";
          hostname = "trabbi.ctu.cx";
        };
      };
    };
  };

}