18 lines
311 B
Nix
18 lines
311 B
Nix
|
{ pkgs
|
||
|
, lib
|
||
|
, config
|
||
|
, ... }: with lib; let
|
||
|
cfg = config.faucet.android;
|
||
|
in {
|
||
|
options.faucet.android = {
|
||
|
enable = mkEnableOption "android tools";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
programs.adb.enable = true;
|
||
|
|
||
|
# allow device access by admin users
|
||
|
users.adminGroups = [ "adbusers" ];
|
||
|
};
|
||
|
}
|