16102dce2f
markdown can't represent the difference without another extension and both the html manual and the manpage render them the same, so keeping the distinction is not very useful on its own. with the distinction removed we can automatically convert many options that use <code> tags to markdown. the manpage remains unchanged, html manual does not render differently (but class names on code tags do change from "code" to "literal").
29 lines
721 B
Nix
29 lines
721 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.mic92 ];
|
|
|
|
###### interface
|
|
options = {
|
|
programs.adb = {
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to configure system to use Android Debug Bridge (adb).
|
|
To grant access to a user, it must be part of adbusers group:
|
|
<literal>users.users.alice.extraGroups = ["adbusers"];</literal>
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf config.programs.adb.enable {
|
|
services.udev.packages = [ pkgs.android-udev-rules ];
|
|
environment.systemPackages = [ pkgs.android-tools ];
|
|
users.groups.adbusers = {};
|
|
};
|
|
}
|