├── .github ├── CODEOWNERS ├── FUNDING.yml ├── renovate.json5 ├── semantic.yaml └── workflows │ ├── build-dx-hwe.yml │ ├── build-dx.yml │ ├── build-gdx.yml │ ├── build-hwe.yml │ ├── build-iso.yml │ ├── build-regular.yml │ ├── content-filter.yml │ └── reusable-build-image.yml ├── .gitignore ├── Containerfile ├── Justfile ├── LICENSE ├── README.md ├── cosign.pub ├── image-builder-iso.config.toml ├── image-builder.config.toml ├── image-versions.yaml ├── image.toml ├── iso.toml ├── iso_files └── configure_iso.sh ├── system_files ├── etc │ ├── dracut.conf.d │ │ └── resume.conf │ ├── flatpak │ │ └── remotes.d │ │ │ └── flathub.flatpakrepo │ └── ublue-os │ │ └── system-flatpaks.list └── usr │ ├── bin │ └── ujust │ ├── lib │ └── bootc │ │ └── kargs.d │ │ └── quiet.toml │ └── share │ ├── containers │ └── storage.conf │ ├── icons │ └── hicolor │ │ └── scalable │ │ ├── distributor-logo-white.svg │ │ └── distributor-logo.svg │ ├── kde-settings │ └── kde-profile │ │ └── default │ │ └── xdg │ │ └── kcm-about-distrorc │ └── ublue-os │ ├── aurora-logo.txt │ ├── fastfetch.jsonc │ └── justfile └── system_files_overrides ├── aarch64-dx └── .gitkeep ├── aarch64-gdx └── .gitkeep ├── aarch64-hwe └── .gitkeep ├── aarch64 └── .gitkeep ├── dx └── .gitkeep ├── gdx └── .gitkeep ├── hwe └── .gitkeep ├── x86_64-dx └── .gitkeep ├── x86_64-gdx └── .gitkeep ├── x86_64-hwe └── .gitkeep └── x86_64 └── .gitkeep /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @castrojo @imbev 2 | 3 | image-versions.yaml 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [castrojo, imbev] -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/semantic.yaml -------------------------------------------------------------------------------- /.github/workflows/build-dx-hwe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-dx-hwe.yml -------------------------------------------------------------------------------- /.github/workflows/build-dx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-dx.yml -------------------------------------------------------------------------------- /.github/workflows/build-gdx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-gdx.yml -------------------------------------------------------------------------------- /.github/workflows/build-hwe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-hwe.yml -------------------------------------------------------------------------------- /.github/workflows/build-iso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-iso.yml -------------------------------------------------------------------------------- /.github/workflows/build-regular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/build-regular.yml -------------------------------------------------------------------------------- /.github/workflows/content-filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/content-filter.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/.github/workflows/reusable-build-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /output 2 | cosign.key -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/Containerfile -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/README.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/cosign.pub -------------------------------------------------------------------------------- /image-builder-iso.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/image-builder-iso.config.toml -------------------------------------------------------------------------------- /image-builder.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/image-builder.config.toml -------------------------------------------------------------------------------- /image-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/image-versions.yaml -------------------------------------------------------------------------------- /image.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/image.toml -------------------------------------------------------------------------------- /iso.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/iso.toml -------------------------------------------------------------------------------- /iso_files/configure_iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/iso_files/configure_iso.sh -------------------------------------------------------------------------------- /system_files/etc/dracut.conf.d/resume.conf: -------------------------------------------------------------------------------- 1 | add_dracutmodules+=" resume " -------------------------------------------------------------------------------- /system_files/etc/flatpak/remotes.d/flathub.flatpakrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/etc/flatpak/remotes.d/flathub.flatpakrepo -------------------------------------------------------------------------------- /system_files/etc/ublue-os/system-flatpaks.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/etc/ublue-os/system-flatpaks.list -------------------------------------------------------------------------------- /system_files/usr/bin/ujust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/bin/ujust -------------------------------------------------------------------------------- /system_files/usr/lib/bootc/kargs.d/quiet.toml: -------------------------------------------------------------------------------- 1 | kargs = ["quiet"] 2 | -------------------------------------------------------------------------------- /system_files/usr/share/containers/storage.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/containers/storage.conf -------------------------------------------------------------------------------- /system_files/usr/share/icons/hicolor/scalable/distributor-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/icons/hicolor/scalable/distributor-logo-white.svg -------------------------------------------------------------------------------- /system_files/usr/share/icons/hicolor/scalable/distributor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/icons/hicolor/scalable/distributor-logo.svg -------------------------------------------------------------------------------- /system_files/usr/share/kde-settings/kde-profile/default/xdg/kcm-about-distrorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/kde-settings/kde-profile/default/xdg/kcm-about-distrorc -------------------------------------------------------------------------------- /system_files/usr/share/ublue-os/aurora-logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/ublue-os/aurora-logo.txt -------------------------------------------------------------------------------- /system_files/usr/share/ublue-os/fastfetch.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/ublue-os/fastfetch.jsonc -------------------------------------------------------------------------------- /system_files/usr/share/ublue-os/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/aurora-lts/HEAD/system_files/usr/share/ublue-os/justfile -------------------------------------------------------------------------------- /system_files_overrides/aarch64-dx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/aarch64-gdx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/aarch64-hwe/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/aarch64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/dx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/gdx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/hwe/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/x86_64-dx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/x86_64-gdx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/x86_64-hwe/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_files_overrides/x86_64/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------