33 lines
589 B
Nix
33 lines
589 B
Nix
{pkgs, ...}: let
|
|
caelestia-shell = pkgs.fetchFromGitHub {
|
|
owner = "caelestia-dots";
|
|
repo = "shell";
|
|
rev = "main";
|
|
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
|
|
};
|
|
in {
|
|
home.packages = with pkgs; [
|
|
inotify-tools
|
|
app2unit
|
|
quickshell
|
|
fish
|
|
jq
|
|
fd
|
|
(pkgs.python3.withPackages (python-pkgs:
|
|
with python-pkgs; [
|
|
aubio
|
|
pyaudio
|
|
numpy
|
|
]))
|
|
cava
|
|
bluez
|
|
ddcutil
|
|
brightnessctl
|
|
curl
|
|
material-symbols
|
|
];
|
|
home.file.".config/quickshell" = {
|
|
source = caelestia-shell;
|
|
};
|
|
}
|