13 lines
194 B
Nix
13 lines
194 B
Nix
{
|
|
lib,
|
|
...
|
|
}: {
|
|
options.module.dpi.bypass = {
|
|
enable = lib.mkEnableOption "the DPI bypass.";
|
|
params = lib.mkOption {
|
|
default = [ ];
|
|
type = with lib.types; listOf str;
|
|
};
|
|
};
|
|
}
|