chore: remove deprecated images

This commit is contained in:
qoijjj
2024-03-11 18:04:13 -07:00
committed by GitHub
parent 718a53b7f6
commit 6686d9ecc9
62 changed files with 10 additions and 1239 deletions

View File

@@ -41,34 +41,11 @@ jobs:
- recipes/general/recipe-wayblue-river-nvidia.yml
- recipes/general/recipe-wayblue-sway-main.yml
- recipes/general/recipe-wayblue-sway-nvidia.yml
# laptop
- recipes/laptop/recipe-silverblue-main-laptop.yml
- recipes/laptop/recipe-silverblue-nvidia-laptop.yml
- recipes/laptop/recipe-silverblue-asus.yml
- recipes/laptop/recipe-silverblue-asus-nvidia.yml
- recipes/laptop/recipe-kinoite-asus.yml
- recipes/laptop/recipe-kinoite-asus-nvidia.yml
- recipes/laptop/recipe-kinoite-main-laptop.yml
- recipes/laptop/recipe-kinoite-nvidia-laptop.yml
- recipes/laptop/recipe-cinnamon-main-laptop.yml
- recipes/laptop/recipe-cinnamon-nvidia-laptop.yml
- recipes/laptop/recipe-bluefin-main-laptop.yml
- recipes/laptop/recipe-bluefin-nvidia-laptop.yml
- recipes/laptop/recipe-sericea-main-laptop.yml
- recipes/laptop/recipe-sericea-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-wayfire-main-laptop.yml
- recipes/laptop/recipe-wayblue-wayfire-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-hyprland-main-laptop.yml
- recipes/laptop/recipe-wayblue-hyprland-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-river-main-laptop.yml
- recipes/laptop/recipe-wayblue-river-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-sway-main-laptop.yml
- recipes/laptop/recipe-wayblue-sway-nvidia-laptop.yml
# framework
- recipes/laptop/recipe-silverblue-framework.yml
- recipes/laptop/recipe-kinoite-framework.yml
- recipes/laptop/recipe-bluefin-framework.yml
- recipes/laptop/recipe-sericea-framework.yml
# asus
- recipes/asus/recipe-silverblue-asus.yml
- recipes/asus/recipe-silverblue-asus-nvidia.yml
- recipes/asus/recipe-kinoite-asus.yml
- recipes/asus/recipe-kinoite-asus-nvidia.yml
# server
- recipes/server/recipe-server-main.yml
- recipes/server/recipe-server-nvidia.yml
@@ -94,37 +71,11 @@ jobs:
- recipes/general/recipe-wayblue-river-nvidia-userns.yml
- recipes/general/recipe-wayblue-sway-main-userns.yml
- recipes/general/recipe-wayblue-sway-nvidia-userns.yml
# laptop
- recipes/laptop/recipe-silverblue-main-laptop-userns.yml
- recipes/laptop/recipe-silverblue-nvidia-laptop-userns.yml
- recipes/laptop/recipe-silverblue-asus-userns.yml
- recipes/laptop/recipe-silverblue-asus-nvidia-userns.yml
- recipes/laptop/recipe-kinoite-asus-userns.yml
- recipes/laptop/recipe-kinoite-asus-nvidia-userns.yml
- recipes/laptop/recipe-kinoite-main-laptop-userns.yml
- recipes/laptop/recipe-kinoite-nvidia-laptop-userns.yml
- recipes/laptop/recipe-cinnamon-main-laptop-userns.yml
- recipes/laptop/recipe-cinnamon-nvidia-laptop-userns.yml
- recipes/laptop/recipe-bluefin-main-laptop-userns.yml
- recipes/laptop/recipe-bluefin-nvidia-laptop-userns.yml
- recipes/laptop/recipe-bluefin-dx-main-laptop-userns.yml
- recipes/laptop/recipe-bluefin-dx-nvidia-laptop-userns.yml
- recipes/laptop/recipe-sericea-main-laptop-userns.yml
- recipes/laptop/recipe-sericea-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-wayfire-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-wayfire-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-hyprland-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-hyprland-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-river-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-river-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-sway-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-sway-nvidia-laptop-userns.yml
# framework
- recipes/laptop/recipe-silverblue-framework-userns.yml
- recipes/laptop/recipe-kinoite-framework-userns.yml
- recipes/laptop/recipe-bluefin-framework-userns.yml
- recipes/laptop/recipe-bluefin-dx-framework-userns.yml
- recipes/laptop/recipe-sericea-framework-userns.yml
# asus
- recipes/asus/recipe-silverblue-asus-userns.yml
- recipes/asus/recipe-silverblue-asus-nvidia-userns.yml
- recipes/asus/recipe-kinoite-asus-userns.yml
- recipes/asus/recipe-kinoite-asus-nvidia-userns.yml
# server
- recipes/server/recipe-server-main-userns.yml
- recipes/server/recipe-server-nvidia-userns.yml

View File

@@ -1,46 +0,0 @@
on:
push:
paths:
- "boot_menu.yml"
- ".github/workflows/release-iso.yml"
workflow_dispatch:
name: release-iso
jobs:
release-iso:
name: Generate and Release ISOs
runs-on: ubuntu-latest
permissions:
contents: write
container:
image: fedora:39
options: --privileged
steps:
- uses: actions/checkout@v4
- name: Generate ISO
uses: ublue-os/isogenerator-old@v2.3.1
id: isogenerator
with:
image-name: ${{ github.event.repository.name }}
installer-repo: releases
installer-major-version: 39
boot-menu-path: boot_menu.yml
- name: install github CLI
run: |
sudo dnf install 'dnf-command(config-manager)' -y
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
sudo dnf install gh -y
- name: Upload ISO
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
if gh release list -R ${{ github.repository_owner }}/${{ github.event.repository.name }} | grep "auto-iso"; then
gh release view auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --json assets -q .assets[].name | xargs --no-run-if-empty -L 1 gh release delete-asset auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }}
gh release upload auto-iso ${{ steps.isogenerator.outputs.iso-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber
else
gh release create auto-iso ${{ steps.isogenerator.outputs.iso-path }} -t ISO -n "This is an automatically generated ISO release." -R ${{ github.repository_owner }}/${{ github.event.repository.name }}
fi
- name: Upload SHA256SUM
env:
GITHUB_TOKEN: ${{ github.token }}
run: gh release upload auto-iso ${{ steps.isogenerator.outputs.sha256sum-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber

View File

@@ -1,3 +0,0 @@
type: script
scripts:
- nvidiaoptimuspowermanagement.sh

View File

@@ -1,3 +0,0 @@
type: script
scripts:
- nvidiaoptimusworkaround.sh

View File

@@ -1,14 +0,0 @@
type: bling
install:
# Installs laptop related changes from upstream
# See the following for details:
# - https://blue-build.org/reference/modules/bling/
# - https://github.com/blue-build/modules/blob/main/modules/bling/installers/laptop.sh
# - https://github.com/blue-build/modules/blob/main/modules/bling/50-laptop.conf
#
# **AMD 7040 series** user should consider avoiding bling `laptop` configuration at the moment.
# This bling config will install TLP over PPD and apply several rules to save battery life.
# However, TLP config will likely interfere with AMD suspend feature,
# hence PPD is typically recommended for **AMD 7040 series** users.
# See: https://community.frame.work/t/tracking-ppd-v-tlp-for-amd-ryzen-7040/39423/6
- laptop

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-dx-framework-userns-hardened
# description will be included in the image's metadata
description: "Bluefin-dx framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-dx-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-dx-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "Bluefin-dx main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-dx
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-dx-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "Bluefin-dx nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-dx-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-framework-userns-hardened
# description will be included in the image's metadata
description: "Bluefin framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-framework-hardened
# description will be included in the image's metadata
description: "Bluefin framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "Bluefin main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-main-laptop-hardened
# description will be included in the image's metadata
description: "Bluefin main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "Bluefin nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,26 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: bluefin-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "Bluefin nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bluefin-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/bluefin-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/bluefin-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: cinnamon-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "Cinnamon main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/cinnamon-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/cinnamon-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: cinnamon-main-laptop-hardened
# description will be included in the image's metadata
description: "Cinnamon main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/cinnamon-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/cinnamon-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: cinnamon-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "Cinnamon nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/cinnamon-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/cinnamon-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: cinnamon-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "Cinnamon nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/cinnamon-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/cinnamon-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-framework-userns-hardened
# description will be included in the image's metadata
description: "Kinoite framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-framework-hardened
# description will be included in the image's metadata
description: "Kinoite framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "Kinoite main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-main-laptop-hardened
# description will be included in the image's metadata
description: "Kinoite main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "Kinoite nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,26 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: kinoite-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "Kinoite nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/kinoite-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/kinoite-files.yml
- from-file: common/kinoite-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-framework-userns-hardened
# description will be included in the image's metadata
description: "sericea framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-framework-hardened
# description will be included in the image's metadata
description: "sericea framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-framework
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "sericea main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-main-laptop-hardened
# description will be included in the image's metadata
description: "sericea main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-main
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "sericea nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: sericea-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "sericea nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/sericea-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-framework-userns-hardened
# description will be included in the image's metadata
description: "Silverblue framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-framework
image-version: 39 # latest is also supported if you want new updates ASAP
# module configuration, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-framework-hardened
# description will be included in the image's metadata
description: "Silverblue framework with some hardening applied"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-framework
image-version: 39 # latest is also supported if you want new updates ASAP
# module configuration, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "Silverblue main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-main
image-version: 39 # latest is also supported if you want new updates ASAP
# module configuration, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-main-laptop-hardened
# description will be included in the image's metadata
description: "Silverblue main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-main
image-version: 39 # latest is also supported if you want new updates ASAP
# module configuration, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "Silverblue nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,26 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: silverblue-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "Silverblue nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/silverblue-packages.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-hyprland-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue hyprland main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/hyprland
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-hyprland-main-laptop-hardened
# description will be included in the image's metadata
description: "wayblue hyprland main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/hyprland
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-hyprland-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue hyprland nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/hyprland-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-hyprland-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "wayblue hyprland nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/hyprland-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-river-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue river main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/river
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-river-main-laptop-hardened
# description will be included in the image's metadata
description: "wayblue river main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/river
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-river-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue river nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/river-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-river-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "wayblue river nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/river-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,21 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-sway-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue sway main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/sway
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-sway-main-laptop-hardened
# description will be included in the image's metadata
description: "wayblue sway main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/sway
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,23 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-sway-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue sway nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/sway-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,25 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-sway-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "wayblue sway nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/sway-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,22 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-wayfire-main-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue wayfire main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/wayfire
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/wayfire-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-wayfire-main-laptop-hardened
# description will be included in the image's metadata
description: "wayblue wayfire main with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/wayfire
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/wayfire-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- type: yafti

View File

@@ -1,24 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-wayfire-nvidia-laptop-userns-hardened
# description will be included in the image's metadata
description: "wayblue wayfire nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/wayfire-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/wayfire-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,26 +0,0 @@
# image will be published to ghcr.io/<user>/<name>
name: wayblue-wayfire-nvidia-laptop-hardened
# description will be included in the image's metadata
description: "wayblue wayfire nvidia with some hardening applied, for laptops"
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/wayblueorg/wayfire-nvidia
image-version: 39
# list of modules, executed in order
# you can include multiple instances of the same module
modules:
- from-file: common/common-files.yml
- from-file: common/gui-packages.yml
- from-file: common/common-packages.yml
- from-file: common/remove-firefox.yml
- from-file: recipes/laptop/laptop-bling.yml
- from-file: common/common-scripts.yml
- type: signing
- from-file: common/gui-scripts.yml
- from-file: common/wayfire-scripts.yml
- from-file: common/disableuserns-packages.yml
- from-file: common/disableuserns-scripts.yml
- from-file: common/nvidia-optimus-workaround-scripts.yml
- from-file: common/nvidia-laptop-scripts.yml
- type: yafti

View File

@@ -1,10 +0,0 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
echo "
# Enable Fine-Grained DynamicPowerManagement
# https://download.nvidia.com/XFree86/Linux-x86_64/545.29.06/README/dynamicpowermanagement.html
options nvidia NVreg_DynamicPowerManagement=0x02
" >> /usr/etc/modprobe.d/nvidia.conf

View File

@@ -1,8 +0,0 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
# applies workaround for known issue with optimus laptops for GNOME and Cinnamon
# https://gitlab.gnome.org/GNOME/mutter/-/issues/2969#note_1872558
mv /usr/share/glvnd/egl_vendor.d/10_nvidia.json /usr/share/glvnd/egl_vendor.d/90_nvidia.json