Created
June 10, 2026 17:32
-
-
Save avidal/535baf172086c3d68c63cf6004ec5d94 to your computer and use it in GitHub Desktop.
BlueBuild recipe: minimal Kinoite for Framework 13 AMD (1Password, Tailscale, Nix)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /var/lib/flatpak/exports/bin/org.mozilla.firefox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| rpm --import https://downloads.1password.com/linux/keys/1password.asc | |
| cat > /etc/yum.repos.d/1password.repo << 'REPO' | |
| [1password] | |
| name=1Password Stable Channel | |
| baseurl=https://downloads.1password.com/linux/rpm/stable/x86_64 | |
| enabled=1 | |
| gpgcheck=1 | |
| repo_gpgcheck=1 | |
| gpgkey=https://downloads.1password.com/linux/keys/1password.asc | |
| REPO | |
| dnf install -y 1password 1password-cli |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Context] | |
| filesystems=xdg-run/1password:ro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | \ | |
| sh -s -- install ostree --no-confirm --persistence=/var/lib/nix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: my-kinoite | |
| description: Minimal Kinoite — Framework 13 AMD, 1Password, Tailscale, Nix | |
| base-image: quay.io/fedora-ostree-desktops/kinoite | |
| image-version: 44 | |
| modules: | |
| - type: rpm-ostree | |
| repos: | |
| - https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-44.noarch.rpm | |
| - https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-44.noarch.rpm | |
| install: | |
| - ffmpeg | |
| - ffmpeg-libs | |
| - gstreamer1-plugin-libav | |
| - gstreamer1-plugins-ugly | |
| remove: | |
| - firefox | |
| - firefox-langpacks | |
| - plasma-discover | |
| - kmahjongg | |
| - kpat | |
| - kmines | |
| - akregator | |
| - dragon | |
| - juk | |
| - type: script | |
| scripts: | |
| - 1password.sh | |
| - tailscale.sh | |
| - nix.sh | |
| - type: kargs | |
| kargs: | |
| - amd_pstate=active | |
| - type: default-flatpaks | |
| system: | |
| install: | |
| - org.mozilla.firefox | |
| - type: files | |
| files: | |
| - source: system_files/ | |
| destination: / |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| dnf config-manager --add-repo https://pkgs.tailscale.com/stable/fedora/tailscale.repo | |
| dnf install -y tailscale | |
| systemctl enable tailscaled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment