Files
nixos/packages/quickshell/home.nix
T
2025-07-22 20:03:39 -05:00

49 lines
815 B
Nix

{
pkgs,
inputs,
system,
...
}: let
caelestia-shell = pkgs.fetchFromGitea {
domain = "git.sakamoto.dev";
owner = "caelestia-dots";
repo = "shell";
rev = "main";
sha256 = "sha256-y9Wkh+9ND8GcUYhybXdEPTVY6gUb0jclnbbVi70l70Y=";
};
in {
imports = [
];
home.packages = with pkgs; [
inputs.quickshell.packages.${system}.default
wl-screenrec
libnotify
grim
foot
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;
};
}