22 lines
308 B
Nix
22 lines
308 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
app2unit
|
|
quickshell
|
|
fish
|
|
jq
|
|
fd
|
|
(pkgs.python3.withPackages (python-pkgs:
|
|
with python-pkgs; [
|
|
aubio
|
|
pyaudio
|
|
numpy
|
|
]))
|
|
cava
|
|
bluez
|
|
ddcutil
|
|
brightnessctl
|
|
curl
|
|
material-symbols
|
|
];
|
|
}
|