diff --git a/faucet/android/default.nix b/faucet/android/default.nix new file mode 100644 index 00000000..a9d46612 --- /dev/null +++ b/faucet/android/default.nix @@ -0,0 +1,17 @@ +{ 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" ]; + }; +}