summaryrefslogtreecommitdiffstats
path: root/lass/3modules/hosts.nix
blob: 37cbf3ed34ee292c615556037c5f38b897cce34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, ... }:

with import <stockholm/lib>;

{
  options.lass.hosts = mkOption {
    type = types.attrsOf types.host;
    default =
      filterAttrs (_: host: host.owner.name == "lass" && host.ci)
      config.krebs.hosts;
  };
}