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

39 lines
869 B
Nix

{
config,
pkgs,
lib,
system,
...
}: let
# Fetch the entire repository from Gitea
# This creates a path in the Nix store containing the repo's contents
caelestia = pkgs.fetchFromGithub {
owner = "liperium"; # The repository owner
repo = "caelestia-shell"; # The repository name
rev = "main"; # Or a specific commit hash/tag like "v1.0"
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Set this to "" or a dummy value first
};
in {
home.packages = with pkgs; [
inputs.quickshell.packages.${system}.default
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;
};
}