diff options
author | Vincent Ambo <mail@tazj.in> | 2023-06-22T20·28+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-06-22T20·35+0000 |
commit | 0d743696d035296f61e0147e820de016df8f9eb8 (patch) | |
tree | 55d3dde61c595fb3459235960f909beb666a6b6c /users/tazjin/nixos/tverskoy | |
parent | 4528052eb78c4a180f52f9601bc727c56dc8b08d (diff) |
feat(tazjin/tverskoy): enable adb for some android hacking r/6346
Change-Id: Ied257b7980319fa3eca5d6588496dd1576d4b19c Reviewed-on: https://cl.tvl.fyi/c/depot/+/8851 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin/nixos/tverskoy')
-rw-r--r-- | users/tazjin/nixos/tverskoy/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 53b189565005..2d061bf2142e 100644 --- a/users/tazjin/nixos/tverskoy/default.nix +++ b/users/tazjin/nixos/tverskoy/default.nix @@ -49,7 +49,7 @@ lib.fix (self: { virtualisation.virtualbox.host.enable = true; virtualisation.docker.enable = true; - users.users.tazjin.extraGroups = [ "docker" "vboxusers" ]; + users.users.tazjin.extraGroups = [ "docker" "vboxusers" "adbusers" ]; fileSystems = { "/" = { @@ -163,6 +163,9 @@ lib.fix (self: { }; }; + # android stuff for hacking on Awful.apk + programs.adb.enable = true; + # systemd-oomd seems to have been enabled by default around ~ # December 2022, and it's really into killing my X session as soon # as I do anything stressful to the machine |