This repository has been archived by the owner on May 18, 2024. It is now read-only.
generated from ublue-os/boxkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
; https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{Makefile,go.mod,go.sum,*.go,.gitmodules}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[{*.md,*.toml}] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
[{Containerfile,Dockerfile,*.bash,*.sh}] | ||
indent_style = space | ||
indent_size = 4 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
FROM quay.io/toolbx-images/alpine-toolbox:edge | ||
FROM ghcr.io/ublue-os/bluefin-cli:latest | ||
|
||
LABEL com.github.containers.toolbox="true" \ | ||
usage="This image is meant to be used with the toolbox or distrobox command" \ | ||
summary="A cloud-native terminal experience" \ | ||
maintainer="jorge.castro@gmail.com" | ||
LABEL com.github.containers.toolbox="true" \ | ||
usage="This image is meant to be used with the Toolbox or Distrobox commands" \ | ||
summary="A new cloud-native terminal experience powered by Wolfi and Homebrew" \ | ||
maintainer="27022259+auricom@users.noreply.github.com" | ||
|
||
COPY extra-packages / | ||
RUN apk update && \ | ||
apk upgrade && \ | ||
grep -v '^#' /extra-packages | xargs apk add | ||
RUN rm /extra-packages | ||
COPY ./extra-packages /extra-packages | ||
|
||
RUN ln -fs /bin/sh /usr/bin/sh && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update | ||
|
||
# Remove default fish bling script, Install extra packages, and Nix | ||
RUN \ | ||
rm usr/share/fish/vendor_conf.d/bling.fish && \ | ||
grep -v '^#' /extra-packages | xargs apk add && \ | ||
rm /extra-packages && \ | ||
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux \ | ||
--extra-conf "sandbox = false" \ | ||
--no-start-daemon \ | ||
--no-confirm | ||
|
||
ENV PATH="${PATH}:/nix/var/nix/profiles/default/bin" | ||
RUN nix run nixpkgs#hello |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-----BEGIN PUBLIC KEY----- | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7lh7fJMV4dBT2jT1XafixUJa7OVA | ||
cT+QFVD8IfIJIS/KBAc8hx1aslzkH3tfeM0cwyCLB7kOStZ4sh6RyFQD9w== | ||
-----END PUBLIC KEY----- | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE/tZcxAuuK/qIKSMWfr5Rux5yRXHC | ||
V8y2Xx4XGkqXyp3yVh5QXzhKe9k7bbTBwF4nhJp5XvlQfmPKu6Ohn1cknA== | ||
-----END PUBLIC KEY----- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,22 @@ | ||
age | ||
atuin | ||
btop | ||
bat | ||
brew | ||
btop | ||
chezmoi | ||
clipboard | ||
cosign | ||
dbus-x11 | ||
direnv | ||
eza | ||
ffmpeg | ||
fd | ||
fish | ||
fzf | ||
github-cli | ||
helix | ||
just | ||
make | ||
micro | ||
ncdu | ||
ncurses | ||
neofetch | ||
neovim | ||
npm | ||
plocate | ||
python3 | ||
gawk | ||
mc | ||
nmap | ||
rclone | ||
ripgrep | ||
speedtest-cli | ||
sed | ||
starship | ||
vimdiff | ||
wl-clipboard | ||
zellij | ||
zstd | ||
systemd | ||
task | ||
tig | ||
uutils | ||
zoxide |