mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
19 lines
471 B
Nix
19 lines
471 B
Nix
{ lib, ... }:
|
|
{
|
|
options.swarselsystems.monitors = lib.mkOption {
|
|
type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);
|
|
default = { };
|
|
};
|
|
options.swarselsystems.sharescreen = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
options.swarselsystems.lowResolution = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
options.swarselsystems.highResolution = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
}
|