about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-01-18 18:48:51 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-01-18 18:54:13 +0100
commit4c4d68237ec3fcb73d459123cdb221f0a4c19833 (patch)
treeadbd968af6adabb40f51ef3fa86784ff97ae7dbc
parenttreewide: Update (diff)
downloadnixos-config-4c4d68237ec3fcb73d459123cdb221f0a4c19833.zip
modules/adb: Remove deprecated `programs.adb`
Diffstat (limited to '')
-rw-r--r--modules/by-name/ad/adb/module.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/by-name/ad/adb/module.nix b/modules/by-name/ad/adb/module.nix
index cf13168a..89cb1439 100644
--- a/modules/by-name/ad/adb/module.nix
+++ b/modules/by-name/ad/adb/module.nix
@@ -10,6 +10,7 @@
 {
   lib,
   config,
+  pkgs,
   ...
 }: let
   cfg = config.soispha.services.adb;
@@ -25,7 +26,9 @@ in {
   };
 
   config = lib.mkIf cfg.enable {
-    programs.adb.enable = true;
+    environment.systemPackages = [
+      pkgs.android-tools
+    ];
 
     users = {
       users."${cfg.user}".extraGroups = ["adbusers"];