7 lines
193 B
Nix
7 lines
193 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib) mkIf;
|
|
inherit (config) conf;
|
|
in mkIf conf.apps.enable {
|
|
programs.adb.enable = true;
|
|
users.users.${conf.username}.extraGroups = [ "adbusers" ];
|
|
}
|