From 2cc261dc68606421a82f9431d78eb336dc1ef1c5 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Mon, 22 Jul 2024 22:14:13 -0500 Subject: [PATCH] add some adb, pci, and usb utils --- boxes/copernicus/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/boxes/copernicus/default.nix b/boxes/copernicus/default.nix index ce375fe..96ff326 100644 --- a/boxes/copernicus/default.nix +++ b/boxes/copernicus/default.nix @@ -19,6 +19,7 @@ users.users.usr.extraGroups = [ "docker" + "adbusers" ]; environment.systemPackages = with pkgs; [ @@ -37,6 +38,8 @@ unzip imagemagick + pciutils + usbutils ]; services.hardware.bolt.enable = true; # thunderbolt support @@ -66,6 +69,8 @@ services.avahi.nssmdns4 = true; # enables the mDNS NSS plug-in services.avahi.openFirewall = true; # opens the firewall for UDP port 5353 + programs.adb.enable = true; + powerManagement.cpuFreqGovernor = "performance"; nixpkgs.config.allowUnfree = true;