mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 05:21:47 +03:00
14 lines
233 B
Nix
14 lines
233 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options.mobile = {
|
||
|
quirks.qualcomm.msm-fb-refresher = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "Enables use of `msm-fb-refresher`.";
|
||
|
};
|
||
|
};
|
||
|
}
|