blob: 7e3af10be6329f7c9b514a3f3cf58dc829bdaa50 (
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.managed)
config.krebs.hosts;
};
}
|