niksos/options/desktop/adb.nix

13 lines
200 B
Nix
Raw Normal View History

2024-05-08 00:02:37 +02:00
{
config,
...
2024-07-24 18:47:53 +02:00
}: let
inherit (config.myOptions.other.system) username;
in {
2024-05-08 00:02:37 +02:00
programs.adb.enable = true;
2024-07-24 18:47:53 +02:00
users.users.${username} = {
2024-05-08 00:02:37 +02:00
extraGroups = [ "adbusers" ];
};
}