.dotfiles/modules/home/monitors.nix

14 lines
275 B
Nix

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