Files
nixos/packages/quickshell/home.nix
T
2025-07-14 22:42:32 -05:00

40 lines
651 B
Nix

{
pkgs,
inputs,
...
}: let
caelestia-shell = pkgs.fetchFromGitHub {
owner = "caelestia-dots";
repo = "shell";
rev = "main";
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
};
in {
imports = [
];
home.packages = with pkgs; [
fuzzel
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/caelestia" = {
# source = caelestia-shell;
# };
}