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

14 lines
450 B
Nix

{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;
};
}