niksos/hosts/common/optional/adb.nix

13 lines
194 B
Nix
Raw Normal View History

2024-05-08 00:02:37 +02:00
{
config,
...
2024-07-24 18:47:53 +02:00
}: let
2024-07-15 23:18:25 +02:00
inherit (config.poz.other.system) username;
2024-07-24 18:47:53 +02:00
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" ];
};
}