1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-16 11:43:21 +03:00
mobile-nixos/modules/adb.nix

39 lines
814 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
options.mobile.adbd = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Enables adbd on the device.
'';
};
};
config = lib.mkIf config.mobile.adbd.enable {
assertions = [
{ assertion = config.mobile.boot.stage-1.usb.enable;
message = "adb requires mobile.boot.stage-1.usb.enable = true";
}
];
mobile.boot.stage-1 = {
usb.features = [ "adb" ];
extraUtils = with pkgs; [{
package = adbd;
extraCommand = ''cp -fpv "${glibc.out}"/lib/libnss_files.so.* "$out"/lib/'';
}];
};
boot.postBootCommands = ''
# Restart adbd early during stage-2
2019-10-28 21:11:01 +03:00
${pkgs.procps}/bin/pkill -x adbd
${pkgs.adbd}/bin/adbd &
'';
};
}