1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/modules/quirks-qualcomm.nix

14 lines
233 B
Nix
Raw Normal View History

{ 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`.";
};
};
}