feat: add android development tools

This commit is contained in:
Jacob Bachmann 2024-09-26 16:38:25 +02:00
parent f5c0ca4eab
commit 31fdc06360
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
4 changed files with 8 additions and 5 deletions

6
flake.lock generated
View file

@ -121,11 +121,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1726463316, "lastModified": 1726937504,
"narHash": "sha256-gI9kkaH0ZjakJOKrdjaI/VbaMEo9qBbSUl93DnU7f4c=", "narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "99dc8785f6a0adac95f5e2ab05cc2e1bf666d172", "rev": "9357f4f23713673f310988025d9dc261c20e70c6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,7 +1,6 @@
{ config { config
, lib , lib
, modulesPath , modulesPath
, pkgs
, ... , ...
}: }:
{ {
@ -37,7 +36,7 @@
boot.resumeDevice = "/dev/disk/by-label/ROOT"; boot.resumeDevice = "/dev/disk/by-label/ROOT";
hardware.nvidia.package = pkgs.unstable.linuxPackages.nvidiaPackages.latest; # hardware.nvidia.package = pkgs.unstable.linuxPackages.nvidiaPackages.stable;
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-label/ROOT"; device = "/dev/disk/by-label/ROOT";

View file

@ -19,5 +19,6 @@
pkgs.unstable.isisdl # downloader for isis of tu-berlin pkgs.unstable.isisdl # downloader for isis of tu-berlin
pkgs.sage # open source mathematics software, free alternative to magma, maple, mathematica, and matlab pkgs.sage # open source mathematics software, free alternative to magma, maple, mathematica, and matlab
pkgs.filebrowser # filebrowser is a web application for managing files and directories pkgs.filebrowser # filebrowser is a web application for managing files and directories
pkgs.apktool # tool for reverse engineering android apk files
]; ];
} }

View file

@ -61,6 +61,9 @@
] ]
++ lib.optionals nixosConfig.bchmnn.collections.development.enable [ ++ lib.optionals nixosConfig.bchmnn.collections.development.enable [
wireshark # powerful network protocol analyzer wireshark # powerful network protocol analyzer
jadx # dex to java decompiler
unstable.httptoolkit # http(s) debugging, development & testing tool
android-studio # the official ide for android (stable channel)
]; ];
} }