zaphyra's git: nixfiles

zaphyra'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 
{

  config = {
    programs.ssh.matchBlocks =
      let
        chaosHost = hostname: {
          hostname = "${hostname}.cccda.de";
          user = "chaos";
          extraOptions = {
            RemoteCommand = "nix run nixpkgs#fish -- -l";
            RequestTTY = "yes";
          };
        };
      in
      {
        chaos-kitchen = chaosHost "kitchen";
        chaos-burbon = chaosHost "burbon";
        chaos-lounge = chaosHost "lounge";
        chaos-workshop = chaosHost "workshop";
      };
  };

}