diff --git a/flake.lock b/flake.lock index 94ba20b..bdef8e1 100644 --- a/flake.lock +++ b/flake.lock @@ -121,11 +121,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1726463316, - "narHash": "sha256-gI9kkaH0ZjakJOKrdjaI/VbaMEo9qBbSUl93DnU7f4c=", + "lastModified": 1726937504, + "narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "99dc8785f6a0adac95f5e2ab05cc2e1bf666d172", + "rev": "9357f4f23713673f310988025d9dc261c20e70c6", "type": "github" }, "original": { diff --git a/hosts/IROH/hardware.nix b/hosts/IROH/hardware.nix index 225f045..d95d906 100644 --- a/hosts/IROH/hardware.nix +++ b/hosts/IROH/hardware.nix @@ -1,7 +1,6 @@ { config , lib , modulesPath -, pkgs , ... }: { @@ -37,7 +36,7 @@ boot.resumeDevice = "/dev/disk/by-label/ROOT"; - hardware.nvidia.package = pkgs.unstable.linuxPackages.nvidiaPackages.latest; + # hardware.nvidia.package = pkgs.unstable.linuxPackages.nvidiaPackages.stable; fileSystems."/" = { device = "/dev/disk/by-label/ROOT"; diff --git a/modules/home-manager/applications.nix b/modules/home-manager/applications.nix index 243cf3a..6df1cfb 100644 --- a/modules/home-manager/applications.nix +++ b/modules/home-manager/applications.nix @@ -19,5 +19,6 @@ pkgs.unstable.isisdl # downloader for isis of tu-berlin 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.apktool # tool for reverse engineering android apk files ]; } diff --git a/modules/home-manager/gui/programs/default.nix b/modules/home-manager/gui/programs/default.nix index 2c89f64..83b6e5b 100644 --- a/modules/home-manager/gui/programs/default.nix +++ b/modules/home-manager/gui/programs/default.nix @@ -61,6 +61,9 @@ ] ++ lib.optionals nixosConfig.bchmnn.collections.development.enable [ 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) ]; }