.dotfiles/modules/home/monitors.nix
2024-07-25 19:41:18 +02:00

10 lines
180 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options.swarselsystems.monitors = mkOption {
type = types.attrsOf (types.attrsOf types.str);
default = { };
};
}