add some pkgs and enable adb

This commit is contained in:
cy 2025-02-15 14:43:35 -05:00
parent 956fae1f04
commit c4aade597a
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
2 changed files with 16 additions and 1 deletions

View file

@ -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;

View file

@ -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;
}