From c4aade597a7d20bcd910d5bbcbd1e6983ade17a1 Mon Sep 17 00:00:00 2001 From: cy Date: Sat, 15 Feb 2025 14:43:35 -0500 Subject: [PATCH] add some pkgs and enable adb --- home/yt/ytnix.nix | 13 ++++++++++++- hosts/ytnix/default.nix | 4 ++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/home/yt/ytnix.nix b/home/yt/ytnix.nix index 70f5aef..699a60a 100644 --- a/home/yt/ytnix.nix +++ b/home/yt/ytnix.nix @@ -94,7 +94,6 @@ unzip lm_sensors sshfs - python312Packages.python-lsp-server gopls anki trezorctl @@ -129,6 +128,18 @@ qbittorrent # vscodium nil + pkg-config + gtk2 + gtk2-x11 + android-tools + (python313.withPackages ( + p: with p; [ + python-lsp-server + pip + virtualenv + wxpython + ] + )) ]; programs.waybar.enable = true; diff --git a/hosts/ytnix/default.nix b/hosts/ytnix/default.nix index cd3a38e..d29295d 100644 --- a/hosts/ytnix/default.nix +++ b/hosts/ytnix/default.nix @@ -143,6 +143,7 @@ "libvirtd" "docker" "disk" + "adbusers" ]; environment.systemPackages = with pkgs; [ @@ -329,6 +330,7 @@ xorg.libXtst xorg.libxkbfile xorg.libxshmfence + python312Packages.wxpython ]; }; programs.evolution.enable = true; @@ -407,4 +409,6 @@ enable = true; binfmt = true; }; + + programs.adb.enable = true; }