{pkgs, ...}: let caelestia-shell = pkgs.fetchFromGitea { domain = "git.sakamoto.dev"; # Or your self-hosted instance, e.g., "codeberg.org" owner = "kenji"; repo = "caelestia-dots"; rev = "main"; # Or a specific commit hash or tag like "v1.0" hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; # !!! REPLACE THIS HASH !!! }; in { home.file.".config/quickshell" = { source = caelestia-shell; }; }