This commit is contained in:
kenji
2025-07-07 18:20:12 -05:00
parent e5bc8801a4
commit bd2465d356
10 changed files with 97 additions and 29 deletions
View File
+12 -1
View File
@@ -1,2 +1,13 @@
{
{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;
};
}