44 lines
734 B
Nix
44 lines
734 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
system,
|
|
...
|
|
}: let
|
|
caelestia-shell = pkgs.fetchFromGitHub {
|
|
owner = "caelestia-dots";
|
|
repo = "shell";
|
|
rev = "main";
|
|
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
|
|
};
|
|
in {
|
|
imports = [
|
|
];
|
|
home.packages = with pkgs; [
|
|
inputs.quickshell.packages.${system}.default
|
|
hyprpicker
|
|
qalculate-qt
|
|
fuzzel
|
|
inotify-tools
|
|
app2unit
|
|
fish
|
|
jq
|
|
fd
|
|
cliphist
|
|
(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;
|
|
};
|
|
}
|