add android tools to damocles

This commit is contained in:
müde 2026-04-22 23:44:26 +02:00
parent 1969d71a8c
commit fbe9ce80d1
2 changed files with 53 additions and 0 deletions

View file

@ -1,5 +1,7 @@
{ pkgs, self, ... }:
{
imports = [ ./android-dev.nix ];
nixpkgs.overlays = [ self.overlays.unstable-packages ];
boot.isContainer = true;
@ -21,4 +23,12 @@
};
security.sudo.wheelNeedsPassword = false;
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc.lib
zlib
];
};
}