nix/option/Dpi.nix

13 lines
194 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
{
lib,
...
}: {
2024-11-16 06:38:48 +03:00
options.module.dpi.bypass = {
enable = lib.mkEnableOption "the DPI bypass.";
params = lib.mkOption {
default = [ ];
type = with lib.types; listOf str;
};
2024-11-16 04:43:59 +03:00
};
}