summaryrefslogtreecommitdiffstats
path: root/tv/2configs/retiolum.nix
blob: 91fe81d69f5d395aa8468d2edc14e21a159601c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, ... }:

with lib;

{
  krebs.retiolum = {
    enable = true;
    connectTo = filter (ne config.krebs.build.host.name) [
      "gum"
      "prism"
      "echelon"
      "cd"
      "ire"
    ];
  };
}