Welcome to the standalone Debian COSMIC project. This repository provides a unified delivery pipeline for the System76 COSMIC Desktop Environment on Debian Testing and Debian Unstable.
Note: This is an unofficial, community-maintained convenience packaging effort. It is not affiliated with, endorsed by, or an official product of the Debian Project or System76.
We provide two primary delivery formats to cater to different user needs:
Unified Debian packages for traditional installation.
cosmic-epoch-monorepo: The full Core DE stack (Compositor, Panel, Settings, etc.).cosmic-utils-monorepo: A curated set of community applet extensions (clippy-land,cosmic-ext-applet-dict,cosmic-ext-applet-tempest), packaged separately so they can be built and updated independently of the core DE stack.
Packages are automatically versioned (e.g., 1.0.11-1.build42) and promoted to GitHub Releases.
Optimized OCI images for systemd-sysext, allowing you to run COSMIC without polluting your host's /usr.
- Delivered via the GitHub Container Registry (GHCR).
- Disclaimer:
systemd-sysextdelivery is intended for power-users, immutable-host setups, and rapid testing. It is not the recommended path for typical desktop installs — prefer the native.debpackages above unless you specifically need a non-destructive overlay.
Fresh builds are "baked" every Friday at 23:59 UTC, ensuring a crisp Saturday morning experience for our users.
- Debian Testing or Sid host.
- systemd >= 248 (for sysext).
- Docker (for
cosmic-updateand local builds).
You can build the monorepo packages locally using the provided justfile:
# Build and extract .debs to ./dist/
just package-debsAdd our signed repository to your Debian Testing/Sid system for automatic updates:
# 1. Add the repository public key
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://rickysarraf.github.io/debian-cosmic/debian-cosmic.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/debian-cosmic.gpg
# 2. Add the repository to your sources
echo "deb [signed-by=/etc/apt/keyrings/debian-cosmic.gpg] https://rickysarraf.github.io/debian-cosmic/ unstable main" | sudo tee /etc/apt/sources.list.d/debian-cosmic.list
# 3. Update and install
sudo apt update
sudo apt install cosmic-epoch-monorepo
# Optionally, install the curated applets package too:
sudo apt install cosmic-utils-monorepoDownload the .deb files directly from our Releases page and install them manually:
sudo apt install ./cosmic-epoch-monorepo*.debRun COSMIC as a systemd-sysext overlay — no changes to your host /usr.
Quick start:
# 1. Pull the latest COSMIC images
sudo bin/cosmic-update
# 2. Build and install the ABI-safety canary
./bin/generate-cosmic-canary.sh
sudo apt install ./cosmic-canary_*.deb
# 3. Activate COSMIC
bin/cosmic-toggle on
# 4. Restart the display manager
sudo systemctl restart gdmFor the full setup guide, update workflow, ABI-safety details, and troubleshooting, see bin/README.md.
We use a "Sanitized Host" principle. All development and builds must occur in isolated environments (Docker or chroot) to prevent host contamination.
See GEMINI.md for core mandates and technical architecture.