# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . { lib, config, ... }: let cfg = config.soispha.services.adb; in { options.soispha.services.adb = { enable = lib.mkEnableOption "Android adb bridge"; user = lib.mkOption { type = lib.types.str; example = "soispha"; default = "soispha"; description = "Username to grant access to adb bridge"; }; }; config = lib.mkIf cfg.enable { programs.adb.enable = true; users.users."${cfg.user}".extraGroups = ["adbusers"]; }; }