Universal Blue sysext with Nix packages

@bketelsen https://github.com/ublue-os/sysext/issues/3 this might interest you!
GitHub
Proposal: Changing the way these overlays work to integrate nix int...
Sorry for always talking about nix, but it really could be quite useful for this project. Like, I am working on an architecture for this project on my personal fork that uses the nix store for thes...
426 Replies
tulip
tulip9mo ago
This thread was made for indexing this topic
dnkmmr
dnkmmr9mo ago
good idea
tulip
tulip9mo ago
apparently bind-mounts are going to be the best way to handle this just like snaps work, lol
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
im on nixos so this works a bit differently but look at the loopback device right there lol
tulip
tulip9mo ago
guys this WORKS
No description
tulip
tulip9mo ago
LES GOOOOOOOOOOOOO IT ACTUALLY WORKS @bketelsen can you help me out with something? literally the only thing missing of this puzzle is just the systemd-sysext itself i really dont know how to add the proper metadata to the system extension could you send me one of yours or something?
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
like, the symlinks are working properly and everything!
No description
tulip
tulip9mo ago
its just the sysext now :(
bketelsen
bketelsen9mo ago
you need this file inside your squashfs
bketelsen
bketelsen9mo ago
GitHub
sysext/sysext.sh at main · ublue-os/sysext
EXPERIMENTAL: ublue systemd-sysext. Contribute to ublue-os/sysext development by creating an account on GitHub.
bketelsen
bketelsen9mo ago
and it needs to match the name of your squashfs so mynixthing.raw should have /usr/lib/extension-release.d/mynixthing.sysext as the name
tulip
tulip9mo ago
oh. so thats the issue... its just the file name.... ill fix it jesus christ it actually worked
tulip
tulip9mo ago
@bketelsen
No description
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
it really did work!!!!!!!!!!!!!!!
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
So! The PR is almost done! Now layering stuff is as easy as running:
just build-config result
just mount-store-squashfs result/$LAYER-store.sqfs
just set-overlay result/$LAYER.sysext.raw
just build-config result
just mount-store-squashfs result/$LAYER-store.sqfs
just set-overlay result/$LAYER.sysext.raw
It just isnt usable yet because the built images arent compatible with systemd-sysext for some reason??? It just complains about it. You can ignore the warning with the --force flag on systemd-sysext but stuff like ssh sessions and whatever else apparently just crap themselves out and dont work anymore??? I guess thats pretty much it! I really dont know how to fix that, tho, although I'm pretty sure there is something to do with file permissions on /usr/share Made a PR on GH with all the changes!
tulip
tulip9mo ago
tulip
tulip9mo ago
cc: @bketelsen (theres also a graph on the PR view)
bketelsen
bketelsen9mo ago
that's insane! I'll play with it tomorrow!
tulip
tulip9mo ago
please use it on a VM for now tho!!! it gonna break your current user session for now im trying to troubleshoot the permission issues you can add any packages from nixpkgs on config.json ill eventually add flake / flakehub support too Well! Not anymore! you can try it out on your own system now, hopefully it shouldnt break anything at the worst case you can just reboot but just make sure SELinux is permissive first (else it will actually break stuff on runtime)
bketelsen
bketelsen9mo ago
for setup-nix-mount and mount-store-squashfs I had to add sudo to most of the lines to make them work. @tuliliw initial impression: this is absolutely amazing. just wow my thoughts: * it makes for a strange experience having to mount the nix store in addition to the sysext. discussion about that here - read the whole thread
bketelsen
bketelsen9mo ago
NixOS Discourse
Should the default nix store location be below /usr?
When I’m on Fedora and want to use a sysext containing a nix store, I can’t do that with a nix store under /nix, because systemd-sysext will only extend the /usr and /opt folders. Correct. I wasn’t aware of that. Do you happen to have any pointers to examples on how to use dm-verity with nix? I’m especially interested in having a ephemeral s...
bketelsen
bketelsen9mo ago
it would feel better from a user's perspective to add the squashfs inside the sysext and add an "enable" script or one-shot systemd unit i don't know if that's possible * the binaries output from the flake are placed in /usr/bin, which will mask/overlay existing binaries in the host. It's better to put them in a different directory - I've been using /usr/ublue/bin, which forces the user to add that to their PATH. I haven't read all the flake code yet, but I'm assuming you're not doing anything about config files (/etc/defaults/docker kind of things) or systemd units... if we move forward with this nix route both of those need a solution.
tulip
tulip9mo ago
yup! the biggest problem with the nix approach is this /etc files thing. like with the other approaches, we do need to copy etc files for every package we want to install, and that would be an issue the nix packages themselves dont contain anything under etc because every etc related thing is generally declared through nixos options
bketelsen
bketelsen9mo ago
that makes sense
tulip
tulip9mo ago
we could do a very janky approach tho: making the user build a nixos configuration on a separate nix file, build the nixos system and extract everything from it's etc and dump it to the systemd-confext layer thats really the only way i think that could work
bketelsen
bketelsen9mo ago
the systemd-confext approach is already janky tho. it makes /etc/ read-only which will trip people up a lot, and require them to unmerge the confext to make changes since we have a bit of freedom in our implementation, we could add an /etc/ tree under a known directory inside the sysext... like /usr/extension-etc.d/hello-layer.sysext/etc/... then put any configs in there and have a host systemd unit that reconciles the /usr/extension-etc with host /etc on a trigger or timer? that approach takes a little of the magic out of the sysext experience tho btw - this is great brainstorming. thinking through all the permutations will help this succeed even if the target audience is relatively small
tulip
tulip9mo ago
(im not answering rn because im having lunch brb real quick) (ill reply to everything soon)
bketelsen
bketelsen9mo ago
and for systemd units it's totally valid to put them in /usr/lib/systemd/system/myunit in the sysext. like this: https://github.com/flatcar/sysext-bakery/blob/main/create_kubernetes_sysext.sh#L46
GitHub
sysext-bakery/create_kubernetes_sysext.sh at main · flatcar/sysext-...
Recipes for baking systemd-sysext images. Contribute to flatcar/sysext-bakery development by creating an account on GitHub.
bketelsen
bketelsen9mo ago
with systemd v255, systemd will do a daemon-reload if the extension has EXTENSION_RELOAD_MANAGER=1 in the extension-release.d config file that should come to us in F40 which isn't far off if we plan for that target, we can write systemd units that don't rely on /etc/ at all like this one:
bketelsen
bketelsen9mo ago
GitHub
sysext-bakery/create_docker_sysext.sh at main · flatcar/sysext-bakery
Recipes for baking systemd-sysext images. Contribute to flatcar/sysext-bakery development by creating an account on GitHub.
bketelsen
bketelsen9mo ago
take your time lol
tulip
tulip9mo ago
hiii im back oh this is just awesome, not depending on /etc on those layers would just be amazing its just that in the end there will need to be a /nix directory on the root because nix links all their binaries to that, sadly overlaying stuff manually ontop of it would be best because in the end it would be necessary i think idk how systemd-sysext works tho, it would be awesome if it could merge multiple nix stores on /usr, then we could just link that to /nix/store and we would be good to go! both approaches should work nonetheless its just that maybe there could be incompatibilities with people that already have nix installed since this is very experimental stuff we most likely should target systems with systemd 255+ then we could worry about stuff with older systemd versions, but for now, whatever, we just need to get this working in the end the user will need to add at least one folder to their path,we could so something like this: - each layer has its own /usr/extensions.d/{LAYER}/path that has their binaries there (instead of /usr/bin) - our utility would symlink everything from those /path folders to /run/extensions.d/path - the user would add /run/extensions.d/path to their PATH the only problem would be if there are the same binaries under the same extension, which we could solve by having a priority system
# usysext-layer-config.yaml
os: _any
arch: "x86-64"
layers:
- name: hello-layer
priority: 999
packages:
- rsync
- rclone
- borg
- name: bye-layer
priority: 1
packages:
- thing1
- thing2
# usysext-layer-config.yaml
os: _any
arch: "x86-64"
layers:
- name: hello-layer
priority: 999
packages:
- rsync
- rclone
- borg
- name: bye-layer
priority: 1
packages:
- thing1
- thing2
bketelsen
bketelsen9mo ago
eek
tulip
tulip9mo ago
or idk just use the order that they appear on the yaml file? 🤔
bketelsen
bketelsen9mo ago
last symlink wins 🙂 Let's not build priorities (or dependent extensions) until they're needed
tulip
tulip9mo ago
makes sense 👍
bketelsen
bketelsen9mo ago
in my mind, the joy of using sysexts would be dropping them into a folder and immediately getting a magical new experience. the less tooling we need to write to make that happen the happier I'll be now we could resolve ALL of the issues we've discussed so far by having a daemon on the host that monitors sysext loading/unloading and takes an action (ignore security implications here for now). for example if /usr/extensions.d/{layer}/ has an init.sh the daemon could run that after loading the extension. that init.sh file could create directories, mount things on the host, reload systemd, copy files, etc but... the security implications are insane. You'd be giving every extension root on your machine
tulip
tulip9mo ago
yeah LOL like i think the best thing would be to have like a cli tool for managing all that usysext for example idk then the user would just: usysext add PACKAGE --layer hello-layer
bketelsen
bketelsen9mo ago
I told @j0rge i wanted to make one called extra
tulip
tulip9mo ago
then it would manage everything by itself
bketelsen
bketelsen9mo ago
this isn't a bad idea if we can't get what we need out of the operating system tools as they exist now
tulip
tulip9mo ago
its just that like we can do everything through just, most likely but it would be much more of a hassle for both us and the users to manage everything there could be both the imperative approach, by using the cli directly, and the declarative, by making a file like that
bketelsen
bketelsen9mo ago
ok let's riff on this for a bit for any sysext, whether it's nix or not, we need to: * manage host paths * manage systemd units * create directories (tmpfiles.d kind of stuff) for host paths, we can add /etc/usysext/paths.d and symlink files into there from the sysext for unit files we could do something similar at /etc/usysext/systemd/ and again for directories /etc/usysext/tmpfiles.d and... this might be interesting the /usr/lib/extension-release.d/extension-release.NAME file is a subset of /etc/os-release which is just key/value pairs and there is intentionally no limitation on adding your own keys we could put all of this metadata in that file and just read it from our management app to act on it three or 4 paragraphs down - here: https://www.freedesktop.org/software/systemd/man/latest/systemd-sysext.html we add EXTENSION_PATHS=/usr/something/bin EXTENSION_UNITS_DIR=/usr/something/systemd/system EXTENSION_TMPFILES=/usr/something/tmpfiles.d maybe EXTENSION_INIT=/usr/something/init/pwnyourworld.sh we can sign extensions too with the same key we use for images which is guaranteed to work on all ublue systems already and cosign should be installed ok here's a random moment of fun the hello-layer sysext prevents sshd from running i rebooted and got this Jan 25 16:15:30 beast sshd[8007]: fatal: chroot("/usr/share/empty.sshd"): Permission denied [preauth] it broke virsh too
tulip
tulip9mo ago
@bketelsen make sure your layer is as updated as possible on the latest commit + SELinux is permissive it used to break everything, ssh, whatever, because it made /usr/{share,lib,bin,} modes 0555 instead of 0755 the latest commit fixes that, hopefully and SELinux labels also disappear because of the layer, cant fix that for now because of a bug in the nixpkgs semanage package i was testing the system extensions and my system just broke LOL it literally wasnt able to boot anymore at least it was on a VM so its good my system just died and cant boot anymore because my pc turned off suddenly so development on this will be halted for some hours @bketelsen since im going to sleep rn and thus i cant work on this rn, i made a really simple graph of what i want the CLI to look like. What do you think about this achitecture?
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
someone would call bext like bext layer get-propery signing-key bext add PACKAGE --config="/path/to/config.json" --lib-flake github:ublue-os/sysext someone could also just fork the main lib flake for making custom layer layouts of their own by modifying the base script bext add --flake github:laixintao/flameshow PACKAGE or SCRIPT --config="/path/to/config.json" im showing some "advanced" usages of the hypotetical cli but in the best case scenario the user would write something like:
bext init # initialzies layer configuration in either users home or /var/lib/bext/NAMEOFCONFIG/config.json
bext add PACKAGE
bext build # or bext bake if they are fancy
bext apply LAYER
bext init # initialzies layer configuration in either users home or /var/lib/bext/NAMEOFCONFIG/config.json
bext add PACKAGE
bext build # or bext bake if they are fancy
bext apply LAYER
Another example with --user flags / git cloning:
bext clone GITHUB_REPO --user # copies GH_REPO to .config/bext/GH_REPO_NAME/REPO_CONTENTS
bext build --apply --user --config-repo=GITHUB_REPO_NAME # builds and applies bext_config.json or something like that on the repo's root dir
bext clone GITHUB_REPO --user # copies GH_REPO to .config/bext/GH_REPO_NAME/REPO_CONTENTS
bext build --apply --user --config-repo=GITHUB_REPO_NAME # builds and applies bext_config.json or something like that on the repo's root dir
Honestly im just brainstorming but this CLI could be super helpful Im going to sleep rn! Good night everyone! bruh i just cut the build time for these extensions by 20 seconds on my ssd at least a minute or so on a HDD the old build script squashed and unsquashed a bunch of folders and idk it was just really confusing now its super fast i love it ill commit soon ill make it so the build script is a derivation itself so it will take even less time than that to work making it a derivation also makes it possible to use the nix sandbox instead of relying on the host filesystem itself, which can be quite unsafe (e.g.: "rm -rf /") also allows for caching and everything
tulip
tulip9mo ago
done!
No description
tulip
tulip9mo ago
the build script is literally just this now
No description
tulip
tulip9mo ago
beautiful stuff!
bketelsen
bketelsen9mo ago
btw I broke my dev machine so I've stalled a little until I get it bakc online
tulip
tulip9mo ago
oh lol ok im slowly building the go CLI
dnkmmr
dnkmmr9mo ago
nice. Imagine a go version of distrobox
tulip
tulip9mo ago
hi guys just an update im still making the cli its gonna be done till next week at max its just a big thing ive been quite busy this week so its hard to work on this but its looking pretty sweet! the thing is that like i wonder why would i do all this tho? its just nix with extra steps i guess the best usability improvement with this would be that distro maintainers could package their own overlays ontop of their images and make dx integrated on the main images like idk bazzite could ship /usr/extensions/bazzite/dx.sysext.raw then activating dx would be a matter of ujust toggle-dx yeah actually makes sense sorry i didnt think this through im gonna keep on making everything
dnkmmr
dnkmmr9mo ago
wait /usr/extensions?
bketelsen
bketelsen9mo ago
I’m in the car for about an hour then I can look
tulip
tulip9mo ago
yup! something like that! its just a little suggestion so whatever idk what would be the proper directory
dnkmmr
dnkmmr9mo ago
I would like to have nix itself be installed as a rpm so it can be updated along the system and not have to worry about accidently deleting nix
tulip
tulip9mo ago
that would be awesome its just that nix can install itself itll be very weird having both the rpm-managed nix and the nix-managed nix
dnkmmr
dnkmmr9mo ago
we would just use the rpm managed nix. I wonder if each user could have its own nix store?
tulip
tulip9mo ago
of course! nix already has a solution for that called nix-profile(s)
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
but you could use bubblewrap to make a nix-user-chroot-like environment for a nix application by just bind-mounting $STORE over to /nix/store in your sandbox
tulip
tulip9mo ago
@dnkmmr
No description
tulip
tulip9mo ago
this project basically just helps distro builders to include dx or other kind of extensions straight onto their main images without having to make any alternative image
dnkmmr
dnkmmr9mo ago
how did you make ls look so good?
tulip
tulip9mo ago
its the nushell's integrated ls command
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
you really should try it out you can use object-based commands like powershell on it
dnkmmr
dnkmmr9mo ago
gonna install the nix package
tulip
tulip9mo ago
No description
dnkmmr
dnkmmr9mo ago
I wonder if we can get gpu acceleration working for nix without the need for wrappers?
tulip
tulip9mo ago
sadly i dont think so? there is a way to bundle nix packages in order to make them run with a specific thing inside of them like
tulip
tulip9mo ago
GitHub
GitHub - NixOS/bundlers
Contribute to NixOS/bundlers development by creating an account on GitHub.
tulip
tulip9mo ago
generates binaries that have an entire /nix/store inside of it with all the dependencies and stuff and the main binary just run nix-user-chroot and thats it!
tulip
tulip9mo ago
almost finishing the main commands! everything is looking pretty good so far
No description
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
the only things missing now are: - refreshing/mounting/unmounting the nix store along with the systemd-sysexts - service for automounting the nix store on boot (and a way for installing it) - prettier cli prompts with go-pretty (stuff like progress bars) - a better build command that includes metadata and a bunch of stuff straight onto the images and thats it!
bketelsen
bketelsen9mo ago
wow that is serious progress!
tulip
tulip9mo ago
its funny how far ive come with this pr in just 10 days amazing stuff! im making the last major command, build this will be particularly annoying to make So guys! All the layer-manipulation-related commands are done! The only thing missing to actually finish all this is just the nix store mounting and prettifying stuff Even the infamous build command is pretty much done Ill just have to remember to change the default flake to ublue-os/sysext instead of my fork whenever this is done
bketelsen
bketelsen9mo ago
is it all in the PR branch? I can check it out tomorrow morning...
tulip
tulip9mo ago
yup! i just made the mounting command like right now now ill test out literally everything on a vm to see if everything is working logging + prettifying things in general is missing tho ill also make a nix package so that its easier to test
tulip
tulip9mo ago
lookin' pretty!
No description
tulip
tulip9mo ago
also, took exactly 1m300ms to build the entire thing, pretty cool! with the build cache that will take a lot less whenever i implement that
bketelsen
bketelsen9mo ago
oh that's fast, nice
tulip
tulip9mo ago
well. IT. IS. DONE i literally JUST finished fixing some stuff on the mounting commands the CLI is functionally done and anyone can just use it now its in an alpha state because there may be many bugs still but it is usable (still advised to use it on a VM with SELinux disabled!)
Chika
Chika9mo ago
What's the benefit of this over straight Nix? Is it just that the binaries and libraries are in /usr/{bin,lib} rather than /nix/var/nix/profiles/*/{bin,lib}?
bketelsen
bketelsen9mo ago
this doesn't appear to require nix on the host. just a bind-mount for the nix store @tulip can you make a demo video? no audio is necessary, but I'd like to see how you use it. this is some ninja level shit
tulip
tulip9mo ago
mostly not requiring nix on the host, and a similar distribution model to what we do with OCI images, like, we can just distribute any system extension and everyone will have a consistent environment. basically we could replace the -dx images with these if this project actually succeeds alright! i just cant do it right now because im a bit busy, but ill make a little video showing it off but seeing that you had trouble figuring out how to use it indicates that something is wrong with the UX
bketelsen
bketelsen9mo ago
no i haven't tried yet. I was reading the code in the PR. mostly I don't see an example config file, that'd be useful
tulip
tulip9mo ago
oh! the example config file is in the code, its just a struct that gets marshalled and written to a file
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
here it is: on the "defaultConfiguration" variable plus it is also Atomic™️ since any layers wont be applied without them actually working first (thats something we can also add to our README/branding) also ive been quite busy this week so i havent worked on this but ill be working on this tomorrow and friday just a heads up because i really wanna get this done its such a cool project lol I was watching some stuff from last year's nixcon And I just found out that "Layered Nix Store(s)" exist? The example that the guy made on his presentation was like to provide a container with a 16TB cloud-storage lowerdir for its /nix/store path so that it will think it has all that storage and packages but actually just has to "download" (more like import?) them Maybe that could be an useful idea for the bext build build cache, like, having a flag named --save-run-to-cache which would merge the default container store with a cached store on the host This is all just because building stuff takes a long time, not even because it is like particularly badly optimized, its just a lot of stuff! Like, fetching the entire Docker / Containerd / Moby runtime, Podman, Incus, Qemu, whatever else all the time you build an image is a very expensive and slow thing Maybe that could be an awesome thing to add Im currently just cleaning up some bugs, and doing the "AddToPath" command so that people can just add the /tmp/extensions.d/bin dir to the target shell's rcs
j0rge
j0rge9mo ago
@tulip in here! ok how do I run something?
tulip
tulip9mo ago
i sent some instructions on #💾ublue-dev but like if you wanna create your extension from scratch it would be something like: (once you get the binary)
bext layer init # this generates a config.json file on $PWD which you'd edit to get your specified packages
bext layer build config.json # this creates a nix/nixos:latest container that builds your config.json file to "LAYER_NAME.sysext.raw" on $PWD
bext layer add $LAYER.sysext.raw # adds the specified layer to BEXT cache (/var/cache/extensions.d)
bext layer activate $LAYER # activates the latest version of $LAYER in cache
bext mount store # mounts /usr/store onto /nix/store
bext mount path # makes a directory named /tmp/extensions.d/bin with the activated layers' binaries
bext add-to-path # adds /tmp/extensions.d/bin to specified $SHELL
bext layer init # this generates a config.json file on $PWD which you'd edit to get your specified packages
bext layer build config.json # this creates a nix/nixos:latest container that builds your config.json file to "LAYER_NAME.sysext.raw" on $PWD
bext layer add $LAYER.sysext.raw # adds the specified layer to BEXT cache (/var/cache/extensions.d)
bext layer activate $LAYER # activates the latest version of $LAYER in cache
bext mount store # mounts /usr/store onto /nix/store
bext mount path # makes a directory named /tmp/extensions.d/bin with the activated layers' binaries
bext add-to-path # adds /tmp/extensions.d/bin to specified $SHELL
@j0rge now i just need to add logging and create a package so that this wont be annoying to compile from scratch
j0rge
j0rge9mo ago
ok so this creates a config.json and then I edit it in there and add whatever nix package I need
tulip
tulip9mo ago
yup!
j0rge
j0rge9mo ago
then I just add that.
tulip
tulip9mo ago
yep!
j0rge
j0rge9mo ago
ok where do I get bext from?
tulip
tulip9mo ago
i can just send you a static binary now? you could build it with go on a distrobox but ill just send you a binary if possible
j0rge
j0rge9mo ago
attach it here it should be small
tulip
tulip9mo ago
just like please dont run this on your host for now because it may break stuff and i dont wanna break your pc im building it
tulip
tulip9mo ago
tulip
tulip9mo ago
remember: deactivate SELinux permanently when running this for now because it is gonna break something (run on a VM ideally) /etc/selinux/config -> SELINUX=permissive @j0rge @j0rge just found a super dumb bug: the progress bar gets stuck on 80% but the build finishes so just know that thats a thing
j0rge
j0rge9mo ago
ack ok so gonna vm this
tulip
tulip9mo ago
just for now tho, it is a super dumb upstream bug ill try to manually patch it whenever i finish up this PR but still, annoying also proprietary stuff is not enabled yet but fixing that is a matter of just modifying a single line
j0rge
j0rge9mo ago
nod
j0rge
j0rge9mo ago
No description
tulip
tulip9mo ago
:( really no way this -> static <- binary jsut didnt work
j0rge
j0rge9mo ago
lol computers
tulip
tulip9mo ago
try running from source then it should work on a distrobox git clone https://github.com/tulilirockz/sysext bext sudo dnf install -y device-mapper-devel gpgme go build -o bext
dnkmmr
dnkmmr9mo ago
We need a self updating nix static binary
tulip
tulip9mo ago
@dnkmmr can i ask you something this might help out with the whole ".desktop" issue we were having with this thing i remember you made some nix install scripts
dnkmmr
dnkmmr9mo ago
.desktop issue?
tulip
tulip9mo ago
and they added their .desktop files to XDG_DATA_DIRS yeah .desktop files arent on any sysext for now because i havent figured out how to add them to those do you know where does nix puts their desktop files to? i remember it was something like /nix/var/nix/profiles/*/share but i literally dont have any profile there
tulip
tulip9mo ago
No description
dnkmmr
dnkmmr9mo ago
the big problem that I have for nix is that nix itself installs itself on the default profile (basically installing flatpak as a flatpak) yup that is correct
j0rge
j0rge9mo ago
getting some ioctl btrfs compilation errors, but I'll leave them vm around for a while and dig in when I get more time
tulip
tulip9mo ago
thats super ultra weird its it something with the build? i havent ever had any issues with that
j0rge
j0rge9mo ago
it's a dep
tulip
tulip9mo ago
can you send me the errors if you can? OH i know what it is its just that your thing is missing btrfs-progs
j0rge
j0rge9mo ago
checking
tulip
tulip9mo ago
i forgot to add that to the dep list lol sorry
j0rge
j0rge9mo ago
gpgme-devel too
tulip
tulip9mo ago
really? i thought it was just gpgme its that the build command uses some podman bindings, and they require some C stuff
j0rge
j0rge9mo ago
I needed devel to pass that oen part
tulip
tulip9mo ago
well gonna add that to the README
j0rge
j0rge9mo ago
📦[jorge@fedora bext]$ go build -o bext
# github.com/containers/storage/drivers/btrfs
../go/pkg/mod/github.com/containers/[email protected]/drivers/btrfs/btrfs.go:12:10: fatal error: btrfs/ioctl.h: No such file or directory
12 | #include <btrfs/ioctl.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
📦[jorge@fedora bext]$ go build -o bext
# github.com/containers/storage/drivers/btrfs
../go/pkg/mod/github.com/containers/[email protected]/drivers/btrfs/btrfs.go:12:10: fatal error: btrfs/ioctl.h: No such file or directory
12 | #include <btrfs/ioctl.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
tulip
tulip9mo ago
even with btrfs-progs?
j0rge
j0rge9mo ago
yeah
tulip
tulip9mo ago
thats so weird jesus christ maybe btrfs-progs-devel?
j0rge
j0rge9mo ago
that's it!
tulip
tulip9mo ago
yo!!!!!!!!!!
j0rge
j0rge9mo ago
where's it put the binary?
tulip
tulip9mo ago
it builds the binary as the directory name there should be either a sysext or a bext binary on $PWD build the thing inside a distrobox then exit the distrobox because it requires host access (when building/deploying sysexts), too
j0rge
j0rge9mo ago
oh ok looks like it built but can't find the binary
tulip
tulip9mo ago
i dont even know what to say like what is happening LOL that never even went under my radar are you running go build -o bext?
j0rge
j0rge9mo ago
yep
📦[jorge@fedora bext]$ go build -o bext
# github.com/ublue-os/sysext/cmd/layer/build
cmd/layer/build/build.go:16:2: "github.com/containers/podman/v4/pkg/bindings/volumes" imported and not used
cmd/layer/build/build.go:17:2: "github.com/containers/podman/v4/pkg/domain/entities" imported and not used
📦[jorge@fedora bext]$ go build -o bext
# github.com/ublue-os/sysext/cmd/layer/build
cmd/layer/build/build.go:16:2: "github.com/containers/podman/v4/pkg/bindings/volumes" imported and not used
cmd/layer/build/build.go:17:2: "github.com/containers/podman/v4/pkg/domain/entities" imported and not used
are those errors or output?
tulip
tulip9mo ago
oh you cloned the repo in the few seconds between me removing something and fixing this git pull the newest thing now sorry go gets super mad at you not using imported libraries, so yeah, errors
j0rge
j0rge9mo ago
up to date
tulip
tulip9mo ago
jesus christ what is happening
No description
tulip
tulip9mo ago
yknow what to stop wasting your time maybe it would be better that i just make the RPM package first and you layer it onto your vm that might be better for now sorry jorge really
j0rge
j0rge9mo ago
lol it's ok we're always trying new stuff
tulip
tulip9mo ago
im going to make a prototype today, test it out, and send you the built rpm with the proper things and everything
j0rge
j0rge9mo ago
yeah no worries, don't sweat it! I learned the horrors of the golang pacckages in fedora
tulip
tulip9mo ago
LOL yeah thats such a mess
j0rge
j0rge9mo ago
did someone seriously do all of this? on purpose?
tulip
tulip9mo ago
these errors?
j0rge
j0rge9mo ago
no these packages lol
j0rge
j0rge9mo ago
No description
tulip
tulip9mo ago
oooooooooh oh god theres so many things the names too lol
dnkmmr
dnkmmr9mo ago
is there some sort of error?
j0rge
j0rge9mo ago
no that's just a list of packages
dnkmmr
dnkmmr9mo ago
looked like a log of an error because of the red text
tulip
tulip9mo ago
buiding some packages with melange!
No description
j0rge
j0rge9mo ago
you know how we wanted an example and we picked "emacs"? maybe the play should be bluefin-cli as a sysext
tulip
tulip9mo ago
that would be an amazing idea? especially considering theyre all just cli applications oh god this is the best hell yeah lets do this! we can even like add hooks for the sysexts if necessary (e.g.: run topgrade on install, generate X file, do Y thing [...])
tulip
tulip9mo ago
It worked out!
No description
tulip
tulip9mo ago
The only thing missing is just a RPM package now
j0rge
j0rge9mo ago
cc @EyeCantCU yeah so I'm thinking, just bolt it onto an existing system = everything you'd ever need decoupled from the host os but with access to everything then for us it becomes "we give you this CLI experience, use it as a container or as a sysext, whatever works for you."
tulip
tulip9mo ago
this is just amazing not going to lie
j0rge
j0rge9mo ago
I need to step out tonight but post pics!
tulip
tulip9mo ago
okok! making the RPM thing ill also make the demo video with some bluefin-cli packages
j0rge
j0rge9mo ago
because I think what we also do is make an action generate the raw file regularly but not sure how updates happen to extensions, is there like a service that handles that?
tulip
tulip9mo ago
i mean the extensions are quite literally just squashfs files we coould rebuild them locally and that wouldnt be so much of an issue the config.json gets copied to the packed system extension, so its just a matter of running bext build /usr/extensions.d/$EXTENSION/metadata.json -o /tmp/bext-cache-$TIME/ then adding the result to the cache and activating the image again
j0rge
j0rge9mo ago
I was thinking an action would just build one on the spot right in the repo
tulip
tulip9mo ago
ye! could also work if the user really wants to rebuild it locally thats an option too shouldnt be an issue
j0rge
j0rge9mo ago
indeed, and useful for folks too so they can modify without needing github
tulip
tulip9mo ago
yup!
EyeCantCU
EyeCantCU9mo ago
It's beautiful
bketelsen
bketelsen9mo ago
I’m so down to see this
tulip
tulip9mo ago
the RPM thing is almost done im still trying to compile this whenever i get this done ill test it out on a VM and thats it!
tulip
tulip9mo ago
No description
bketelsen
bketelsen9mo ago
@tulip when you're around can you walk me through testing bext?
tulip
tulip9mo ago
oh yeah! im around right now! lol
bketelsen
bketelsen9mo ago
let's do it!
tulip
tulip9mo ago
do you want to go on a VC or through text here?
bketelsen
bketelsen9mo ago
text please, I'm multitasking while I do internal required training at work 🙂
tulip
tulip9mo ago
oh lol okok no prob
bketelsen
bketelsen9mo ago
I have your branch. that's as far as I went
tulip
tulip9mo ago
you can either build the packages or just the binary itself directly i havent been able to install the rpm package properly through rpm-ostree due to some selinux issues for some reason so i guess the binary would be better rn
bketelsen
bketelsen9mo ago
ok so I'll drop into a container with go and build it
tulip
tulip9mo ago
make a fedora distrobox with these packages: device-mapper-devel gpgme-devel btrfs-progs-devel (and also go) then you should be able to compile it fine oh there is something very funky going on with the build progress bars but it should build
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
well did it work?
bketelsen
bketelsen9mo ago
ok I added a build-devbox.ini with those packages while I was at it. Built it go build -o bext that's done
tulip
tulip9mo ago
good idea! i made a devbox just for building the rpm but makes sense indeed! okok so now you can initialize a new image with bext layer init it should make a config.json file in $PWD by default
bketelsen
bketelsen9mo ago
ok to do that in the container?
tulip
tulip9mo ago
actually i have no idea ive always ran that on the host so maybe that wont work
bketelsen
bketelsen9mo ago
should I copy bext over to my test vm?
tulip
tulip9mo ago
yep!
bketelsen
bketelsen9mo ago
i'll do that lol
tulip
tulip9mo ago
its just that bext connects to /run/user/X/podman/podman.sock so if your container has access to podman it should work but i guess it wont the build should be completely safe to run on any system
bketelsen
bketelsen9mo ago
ok I have a config.json
tulip
tulip9mo ago
its just the bext mount extensions command that isnt okok you can add whatever you want there (also do you think it would be better to have yaml support?) then run bext layer build /path/to/config.json
bketelsen
bketelsen9mo ago
json doesn't have indenting issues. my vote would be to worry about yaml later
tulip
tulip9mo ago
should create a file named $LAYER_NAME.sysext.raw in $PWD also okok
bketelsen
bketelsen9mo ago
oh I have to enable the podman socket do you remember how to do that?
tulip
tulip9mo ago
ummmm its systemctl enable --now --user podman.socket but try running it without the socket being enabled i havent tested that out i wonder what will happen
bketelsen
bketelsen9mo ago
got it it fails without the socket
tulip
tulip9mo ago
okok should also work with the system-wide socket
bketelsen
bketelsen9mo ago
ok now i have example.sysext.raw (and that was faaaast!)
tulip
tulip9mo ago
wow that built so fast for you yeah jesus christ how can you stat the file? stat -h example.sysext.raw
bketelsen
bketelsen9mo ago
-r--r--r-- 1 bjk bjk 98394112 Feb 16 10:20 example.sysext.raw
tulip
tulip9mo ago
maybe it literally didnt work? oh it is big enough that maybe it actually worked what is in your config.json?
bketelsen
bketelsen9mo ago
just neovim
tulip
tulip9mo ago
cool! so it should have actually worked! cool! so
bketelsen
bketelsen9mo ago
{
"sysext-name": "example",
"packages": [
"neovim"
],
"arch": "x86-64",
"os": "_any"
}
{
"sysext-name": "example",
"packages": [
"neovim"
],
"arch": "x86-64",
"os": "_any"
}
tulip
tulip9mo ago
you can check out what are the sysext's contents with sudo mount -t squashfs -o loop example.sysext.raw $EMPTY_PATH
bketelsen
bketelsen9mo ago
ok just to prove it isn't there:
which nvim
/usr/bin/which: no nvim in (/home/bjk/.local/bin:/home/bjk/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin)
which nvim
/usr/bin/which: no nvim in (/home/bjk/.local/bin:/home/bjk/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin)
tulip
tulip9mo ago
okok so
bketelsen
bketelsen9mo ago
sudo mount -t squashfs -o loop example.sysext.raw $EMPTY_PATH
[sudo] password for bjk:
mount: example.sysext.raw: can't find in /etc/fstab.
sudo mount -t squashfs -o loop example.sysext.raw $EMPTY_PATH
[sudo] password for bjk:
mount: example.sysext.raw: can't find in /etc/fstab.
tulip
tulip9mo ago
empty_path is just a folder that you may create lol mkdir test
bketelsen
bketelsen9mo ago
bahaha
tulip
tulip9mo ago
the nvim symlink should be under test/usr/extensions.d/example/bin/nvim (i hope it worked, fingers crossed!)
bketelsen
bketelsen9mo ago
ok there's a bunch of symlinks to nix store in there (that show broken because there's no nix store mounted)
tulip
tulip9mo ago
yeye is there a nvim in there?
bketelsen
bketelsen9mo ago
yup
tulip
tulip9mo ago
great!!!! so it worked!
bketelsen
bketelsen9mo ago
nvim, nvim-python3 nvim-ruby so far so good!
tulip
tulip9mo ago
ok now we are gonna add the layer to the cache and activate it (just unmount the test layer thing first just because maybe that might break something) sudo umount ./test
bketelsen
bketelsen9mo ago
just did that
tulip
tulip9mo ago
then: okok bext layer add example.sysext.raw
bketelsen
bketelsen9mo ago
bext layer add example.sysext.raw
Error: mkdir /var/cache/extensions: permission denied
bext layer add example.sysext.raw
Error: mkdir /var/cache/extensions: permission denied
tulip
tulip9mo ago
yeye so its right you can change the cache path but ideally that should be system-wide so run that but with sudo sudo !!
bketelsen
bketelsen9mo ago
did it - had to give full path to bext because it's not in root path... done
tulip
tulip9mo ago
should create /var/cache/extensions/(? idk)/example/BLOB okok now you just need to bext layer activate example
bketelsen
bketelsen9mo ago
ls -la /var/cache/extensions/blobs/example/
total 96092
drwxr-xr-x 1 root root 152 Feb 16 10:27 .
drwxr-xr-x 1 root root 14 Feb 16 10:27 ..
lrwxrwxrwx 1 root root 100 Feb 16 10:27 current_blob -> /var/cache/extensions/blobs/example/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-rw-r--r-- 1 root root 98394112 Feb 16 10:27 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855

~/bexttest
ls -la /var/cache/extensions/blobs/example/
total 96092
drwxr-xr-x 1 root root 152 Feb 16 10:27 .
drwxr-xr-x 1 root root 14 Feb 16 10:27 ..
lrwxrwxrwx 1 root root 100 Feb 16 10:27 current_blob -> /var/cache/extensions/blobs/example/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-rw-r--r-- 1 root root 98394112 Feb 16 10:27 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855

~/bexttest
tulip
tulip9mo ago
great!
bketelsen
bketelsen9mo ago
as sudo?
tulip
tulip9mo ago
so its working great so far yeah it will symlink the current_blob to /var/lib/extensions/
bketelsen
bketelsen9mo ago
done
tulip
tulip9mo ago
then the last part is really just to mount everything up
bketelsen
bketelsen9mo ago
ls -la /var/cache/extensions/blobs/example/ total 96092 drwxr-xr-x 1 root root 152 Feb 16 10:27 . drwxr-xr-x 1 root root 14 Feb 16 10:27 .. lrwxrwxrwx 1 root root 100 Feb 16 10:27 current_blob -> /var/cache/extensions/blobs/example/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -rw-r--r-- 1 root root 98394112 Feb 16 10:27 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 ~/bexttest
tulip
tulip9mo ago
bext mount layer --refresh bext mount store --refresh bext mount path --refresh bext add-to-path thats it i think in this order in particular btw because the store cant be mounted without having the layers mounted first
bketelsen
bketelsen9mo ago
bext mount layer doesn't exist
tulip
tulip9mo ago
oh bext mount extensions
bketelsen
bketelsen9mo ago
bext mount [extensions, path, store]
tulip
tulip9mo ago
yeye
bketelsen
bketelsen9mo ago
❯ sudo /var/home/bjk/.local/bin/bext mount store --refresh
Error: mkdir /nix/store: no such file or directory
❯ sudo /var/home/bjk/.local/bin/bext mount store --refresh
Error: mkdir /nix/store: no such file or directory
tulip
tulip9mo ago
weird?
bketelsen
bketelsen9mo ago
oops i did it out of order oh no i didn't
tulip
tulip9mo ago
well lets see if it works hmmmmmmm
bketelsen
bketelsen9mo ago
but I don't have nix on this host
tulip
tulip9mo ago
try running this:
chattr -i /
mkdir -p /nix/store
chattr +i /
chattr -i /
mkdir -p /nix/store
chattr +i /
it should just create the store folder
bketelsen
bketelsen9mo ago
ok done and the mount store worked
tulip
tulip9mo ago
ooooooooooh i know what happened i called os.Mkdir instead of os.MkdirAll on the mounting process well so it worked? did the bext mount path also work?
bketelsen
bketelsen9mo ago
mount path didn't work
tulip
tulip9mo ago
what did it say?
bketelsen
bketelsen9mo ago
udo /var/home/bjk/.local/bin/bext mount path
Error: no such file or directory
udo /var/home/bjk/.local/bin/bext mount path
Error: no such file or directory
maybe another mkdirall issue?
tulip
tulip9mo ago
hmmmmmmmmm i wonder what happened
bketelsen
bketelsen9mo ago
yeah I don't have /tmp/extensions.d
tulip
tulip9mo ago
can you try debug logging? bext mount path --loglevel debug oh yeah it should be that maybe a mkdirall issue
bketelsen
bketelsen9mo ago
ok mount path worked
tulip
tulip9mo ago
great! now bext add-to-path bash (i should make that automatic without needing the user to actually type the shell name but still)
bketelsen
bketelsen9mo ago
~/bexttest
❯ bext add-to-path $SHELL
[10:36:23.483] WARN: Could not find shell /bin/bash, valid shells are: zsh, nu, bash

~/bexttest
❯ bext add-to-path bash
[10:36:36.107] INFO: Successfully written snippet to /home/bjk/.bashrc


~/bexttest

~/bexttest
❯ bext add-to-path $SHELL
[10:36:23.483] WARN: Could not find shell /bin/bash, valid shells are: zsh, nu, bash

~/bexttest
❯ bext add-to-path bash
[10:36:36.107] INFO: Successfully written snippet to /home/bjk/.bashrc


~/bexttest

tulip
tulip9mo ago
great!!!! now refresh your bash shell and it shouuuuld be fine!
bketelsen
bketelsen9mo ago
brb it did work btw
tulip
tulip9mo ago
neovim worked?
bketelsen
bketelsen9mo ago
y
tulip
tulip9mo ago
also im very surprised by how incredibly fast your layer built my computer takes at least a minute building any layer can you also check if /usr/share/applications/neovim* exists?
bketelsen
bketelsen9mo ago
yes it's symlinked in!
tulip
tulip9mo ago
YO NO WAY AHAHHA LES GO i really thought these didnt work!!!!!!!!!! thats great!!!!!!!!!!!!!!! well, now we can just use that to install steam LOL anything really WOW really this is even bigger than i thought sooooooooooooooooooooooo thats it!!!!!!!!!
bketelsen
bketelsen9mo ago
one word
tulip
tulip9mo ago
the only thing that i havent done yet is the automount service so that /nix/store gets automatically mounted on boot
bketelsen
bketelsen9mo ago
WOW
tulip
tulip9mo ago
yea!!!!!!!!!!!!!! this is so amazing
bketelsen
bketelsen9mo ago
this is insanely amazing
tulip
tulip9mo ago
yeah!!!!!!!!!!!!!!!! @j0rge check this out!!!!
bketelsen
bketelsen9mo ago
he's on a plane to Mexico I think
tulip
tulip9mo ago
lol okok hes eventually going to see this this is so cool oh god
bketelsen
bketelsen9mo ago
so my notes: 1. there are some mkdir issues 2. a few commands are missing args from the help text
tulip
tulip9mo ago
yeah im literally fixing right now all these issues we got (really?)
bketelsen
bketelsen9mo ago
the command needed an arg, but its' not in the help string
tulip
tulip9mo ago
OH yeah that is something that i didnt consider
bketelsen
bketelsen9mo ago
layer activate
j0rge
j0rge9mo ago
No description
tulip
tulip9mo ago
HAHAH hey jorge!
j0rge
j0rge9mo ago
I'm listening to ghost celebrating!!
bketelsen
bketelsen9mo ago
change it to layer activate [layername] or whatever
tulip
tulip9mo ago
okok
bketelsen
bketelsen9mo ago
add a minArgs = 1 to the command definition God Bless America this is sooooooooo good
tulip
tulip9mo ago
okok!!! that is such a sweet thing like oh god this might change some stuff around well is there something else?
bketelsen
bketelsen9mo ago
i was going to ask if it survives reboots but I see the mount unit in the source
tulip
tulip9mo ago
there is the unit butttt i dont know if it works? shouuuld work fine but still
j0rge
j0rge9mo ago
Is this neovim?
bketelsen
bketelsen9mo ago
yeah my go-to first test since it's pretty self contained
tulip
tulip9mo ago
indeed
bketelsen
bketelsen9mo ago
initial thoughts: 1. Seriously, amazing job on this. WOW 2. we should make a repo with prebuilt configs and a GH action that builds & signs the raw files 3. add a bext get command that pulls the raw files, checks the signature 4. a ton of documentation is needed 5. WOW
tulip
tulip9mo ago
how would we sign them, though? would it be a good idea to add the signing thing straight into the image? LOL yeah
bketelsen
bketelsen9mo ago
cosign? I think we already have all the plumbing needed in the bluefin org and bluefin probably already has the pubkey installed
tulip
tulip9mo ago
oooooooooooh
j0rge
j0rge9mo ago
Yep Should sign like any other artifact
tulip
tulip9mo ago
yeah!!!! so it shouldnt be much harder than signing a container yeah!!!
bketelsen
bketelsen9mo ago
flipping wow
tulip
tulip9mo ago
this is wonderful im happy that this actually works as it does distributed nix lol
bketelsen
bketelsen9mo ago
nixless nix
tulip
tulip9mo ago
lol yeah!
bketelsen
bketelsen9mo ago
it's like serverless and distroless
tulip
tulip9mo ago
also like thers something that i really want to do its just that like all builds require every package to be fetched at every run there isnt any cache implemented yet for this
bketelsen
bketelsen9mo ago
so add a local cache?
tulip
tulip9mo ago
i dont exactly know how to do that like ive tested two approaches either 1: make a tarball of the old container and paste it into the new container
bketelsen
bketelsen9mo ago
determinate systems has a magic nix cache thing
tulip
tulip9mo ago
(doesnt work because of impurities with /bin/sh) yo what im going to check this out
bketelsen
bketelsen9mo ago
I can drag them in, they're awesome and would probably help us build the gh action 🙂
tulip
tulip9mo ago
yo wow no way???? like i didnt know that that existed i was thinking about mounting a /nix store and using chroot-nix-stores to try to implement a build cache but cool!!!!!!!!!!!!!! also yeah documentation is pretty much required for a project like this havent written anything because the approaches that i was testing were so volatile that after like 24 hours the documentation would be worthless well, working on fixing all the stuff we talked about! there are also some places where concurrency would help out a lot
bketelsen
bketelsen9mo ago
No description
bketelsen
bketelsen9mo ago
nailed it
tulip
tulip9mo ago
hahah lets go!!!!!!!!!!!!!!
bketelsen
bketelsen9mo ago
i told him we were going to fix the last few bugs and get documentation together, then they'll point us in the right direction to get the nix cache stuff working
tulip
tulip9mo ago
alright!!! also you know that ummmmm that nix bundle thing that we were talking about some time ago? this is very experimental but maybe we could wrap all those symlinks to scripts that run bwrap with a nix store on a non-root path
bketelsen
bketelsen9mo ago
yeah. I didn't end up loving that very much
tulip
tulip9mo ago
should be leagues faster than nix-bundle but still work just as well
bketelsen
bketelsen9mo ago
v2
tulip
tulip9mo ago
basically would be something like nix-user-chroot or nix-portable
bketelsen
bketelsen9mo ago
let's ship this beautiful beast first
tulip
tulip9mo ago
ye!!!
bketelsen
bketelsen9mo ago
i'm so amazed you really nailed this, great work
tulip
tulip9mo ago
but all the things that this does should be also able to be run as a non-root user like entirely, up to the overlays and everything https://github.com/containers/fuse-overlayfs and https://bindfs.org/ should make that possible thank you!!!
bketelsen
bketelsen9mo ago
i'm in shock at how much potential this has
tulip
tulip9mo ago
also!! you can check out the layer metadata by running bext get-property layer_name, too! yeah???? like oh god this is amazing it should also work everywhere that systemd-sysext works actually
bketelsen
bketelsen9mo ago
OMG it's beautiful
tulip
tulip9mo ago
we can also implement systemd-less suport by just layering the layers ourselves lol so the only limit for this program's portability are just where we get the binaries from should work with anything, like freebsd binaries for example we just really need overlayfs or something similar to that in order for this program to work LOL thats so cool
bketelsen
bketelsen9mo ago
GitHub
GitHub - ublue-os/bext: Build and manage systemd-sysexts
Build and manage systemd-sysexts. Contribute to ublue-os/bext development by creating an account on GitHub.
bketelsen
bketelsen9mo ago
created bext repo so there won't be confusion
tulip
tulip9mo ago
okok makes sense sooo can we just upload stuff to that instead? technically the program is already functional, it just has a bunch of (relatively minor) bugs
bketelsen
bketelsen9mo ago
yes let's PR against the new repo instead of the sysext one, since the history is so unrelated and the name is confusing
tulip
tulip9mo ago
ok!!! gonna send a PR to that one
bketelsen
bketelsen9mo ago
@j0rge the final shape and when f40 lands (and on other distros, systemd 255 lands) we can build in support for systemd services so we can layer things like mysql or redis, or whatever we need a systemd unit to create /nix/store - which already exists in the ublue tree somewhere and that needs to run before the bext-mount service
tulip
tulip9mo ago
bext-mount should also create the nix store by itself so its ok
dnkmmr
dnkmmr9mo ago
and we should have nix be installed as an rpm
bketelsen
bketelsen9mo ago
we don't need nix for this !!!
tulip
tulip9mo ago
lol maybe someone will do that eventually but this doesnt require nix indeed
dnkmmr
dnkmmr9mo ago
then how will it mount nix packages?
bketelsen
bketelsen9mo ago
magic read the backscroll here it's all explained
tulip
tulip9mo ago
tldr: mounts /nix/store from mounted systemd-sysext files (/usr/store directory in them)
dnkmmr
dnkmmr9mo ago
/usr/store ?
tulip
tulip9mo ago
bruh @bketelsen with the bwrap approach we literally can do the dreaded /usr merge for nix! lol literally just thought about that
bketelsen
bketelsen9mo ago
baby steps @tulip ship it first
tulip
tulip9mo ago
yep! im just thinking about stuff that we could do in the future could be amazing theres so much stuff we can do
bketelsen
bketelsen9mo ago
it's already amazing
tulip
tulip9mo ago
ye!!! yeah! we build a nix derivation with all the packages specified in a config.json file, then copy the resulting /nix/store paths onto a squashfs image and mount that to the host
bketelsen
bketelsen9mo ago
so we make a new repo for sysext recipes, then we can copy flatcar's gh action for releasing them: https://github.com/flatcar/sysext-bakery/blob/main/.github/workflows/release.yaml
GitHub
sysext-bakery/.github/workflows/release.yaml at main · flatcar/syse...
Recipes for baking systemd-sysext images. Contribute to flatcar/sysext-bakery development by creating an account on GitHub.
tulip
tulip9mo ago
@bketelsen can you help me out with this?
No description
tulip
tulip9mo ago
idk how to pr to the new repo because there isnt anything in commom between them?? weird
bketelsen
bketelsen9mo ago
git remote rename origin old-origin
bketelsen
bketelsen9mo ago
git remote add origin https://github.com/ublue-os/bext
GitHub
GitHub - ublue-os/bext: Build and manage systemd-sysexts
Build and manage systemd-sysexts. Contribute to ublue-os/bext development by creating an account on GitHub.
bketelsen
bketelsen9mo ago
git push -u origin $yourbranchname i think that will work it won't be a PR it'll be a new branch if it doesn't work I'll just copy the files from the exiting repo to the new one and you can pr any local changes
tulip
tulip9mo ago
oh do i have perms for that repo? i thought i didnt
bketelsen
bketelsen9mo ago
idk
tulip
tulip9mo ago
gonna try lemme see
bketelsen
bketelsen9mo ago
it won't work I don't think
tulip
tulip9mo ago
yea i dont have perms lol
bketelsen
bketelsen9mo ago
let me add the current stuff and you can check it out then pr
tulip
tulip9mo ago
okok
bketelsen
bketelsen9mo ago
when @j0rge is back we can get some help fixing up your permissions. I dont have that level of mojo sorry
tulip
tulip9mo ago
yeah dont worry lol its fine
bketelsen
bketelsen9mo ago
it's going to make the committer me which isn't ideal since you wrote all this 😦 i'll do the coauthor
tulip
tulip9mo ago
honestly i wouldnt mind but i guess that wouldnt be so cool
bketelsen
bketelsen9mo ago
is that ok?
tulip
tulip9mo ago
ok!! yeah dw
bketelsen
bketelsen9mo ago
what do you want NAME <email> to be?
tulip
tulip9mo ago
usually i use:
[user]
name = Tulili
[user]
name = Tulili
j0rge
j0rge9mo ago
Ping an approver
bketelsen
bketelsen9mo ago
changed the module name to github.com/ublue-os/bext changed all the code to use the new module name
tulip
tulip9mo ago
alright! also we should change the flake that the build command points to
tulip
tulip9mo ago
No description
tulip
tulip9mo ago
that, to github:ublue-os/bext
bketelsen
bketelsen9mo ago
done
tulip
tulip9mo ago
great! also this is so extensible jesus christ people can just have other types of build processes
tulip
tulip9mo ago
just gotta merge it and we're done moving! great stuff :)
bketelsen
bketelsen9mo ago
can you thumbs up comment on the PR in lieu of a PR approval? so we don't look like a bunch of cowboys
tulip
tulip9mo ago
oh yeah LOL ok
bketelsen
bketelsen9mo ago
ok merged now you can PR anything
tulip
tulip9mo ago
sweet! @bketelsen i have a bunch of ideas and stuff that we could do should I make separate issues for everything or should i include them all on a single issue?
bketelsen
bketelsen9mo ago
separate them if they arent' related, I think
tulip
tulip9mo ago
theyre all not related ok ok
bketelsen
bketelsen9mo ago
oops
j0rge
j0rge9mo ago
Having too many is better than one monolith
bketelsen
bketelsen9mo ago
No description
tulip
tulip9mo ago
alright! woops! hahah that url looks nice
bketelsen
bketelsen9mo ago
it was a good $13 investment
tulip
tulip9mo ago
i got the "rockz" part from my github username because of the github org for sodalite (sodaliterocks) so we're going to host the docs on that domain?
bketelsen
bketelsen9mo ago
before go had built-in package management I prototyped one called go rocks
tulip
tulip9mo ago
thats sweet! i thought that it was just an idea or something, but you actually bought it LOL
bketelsen
bketelsen9mo ago
yup 🙂
tulip
tulip9mo ago
really? cool! i never heard of it
bketelsen
bketelsen9mo ago
i never released it. It became athens with Aaron Schelshinger's help
tulip
tulip9mo ago
oh! looks like a pretty cool project ngl also like ive never really had much experience with go before this project so maybe there are some things in the code that are not particularly ideomatic most likely going to need some cleanup
bketelsen
bketelsen9mo ago
my first glance - it looked great
j0rge
j0rge9mo ago
You picked the right person to learn from
tulip
tulip9mo ago
yeah hahaha ive seen some of brian's presentations honestly im flattered to see you guys happy about this project really hoping this will help out
bketelsen
bketelsen9mo ago
you should be really proud of this, you went from "hand-wavy idea" to great implementation in very little time.
tulip
tulip9mo ago
hhhahha thank you so much like really you gave me the idea honestly but im indeed very proud of this!!!
j0rge
j0rge9mo ago
😈
bketelsen
bketelsen9mo ago
@tulip caution! github.com/mitchelh/osext has been removed i did a go mod tidy and now I can't build because containerd indirectly depends on it
tulip
tulip9mo ago
honestly i dont know what happened to the dependencies i was trying out some stuff (like libpod, docker bindings...) and the go.mod got super bloated even though the podman bindings shouldnt take so many dependencies maybe it would be better to delete the current go.mod and re-add the dependencies one by one
bketelsen
bketelsen9mo ago
podman pulls all those deps the go tool removes unused ones when you go mod tidy
tulip
tulip9mo ago
wow thats weird
bketelsen
bketelsen9mo ago
podman is a pig
tulip
tulip9mo ago
yeah lol
bketelsen
bketelsen9mo ago
for now, don't go mod tidy or update any deps can you thumbs up this?
tulip
tulip9mo ago
yup!!
bketelsen
bketelsen9mo ago
first step at CI
bketelsen
bketelsen9mo ago
GitHub
fix: Update go.yml · ublue-os/bext@7b9a06e
Build and manage systemd-sysexts. Contribute to ublue-os/bext development by creating an account on GitHub.
tulip
tulip9mo ago
writing a warning for the curious folks yoooooo the build worked!
bketelsen
bketelsen9mo ago
now with a status badge 🙂
tulip
tulip9mo ago
added all my ideas as issues :) im adding very strict linters and formatters should i even do that tho? that might make building code very annoying but ill make the PR anyways its just that its so annoying to see end users getting bugs... i hope these will ensure some runtime safety
j0rge
j0rge9mo ago
loosening is always way easier than tightening up later, it's a logical choice
tulip
tulip9mo ago
yep!
bketelsen
bketelsen9mo ago
Yes!
tulip
tulip9mo ago
just finished my final pr for today could someone approve them? would be awesome
tulip
tulip9mo ago
GitHub
Pull requests · ublue-os/bext
Build and manage systemd-sysexts. Contribute to ublue-os/bext development by creating an account on GitHub.
tulip
tulip9mo ago
whenever all the currently open issues are done i personally will consider this project funcionally done LOL @j0rge sorry for asking but can i have approving perms for ublue-os/bext? its just that there are some PRs that would be awesome to add like the linting stuff and whatever else that are quite weird to get reviewed without having the "write -> commit -> test CI" loop maybe i can try to do those things locally if you dont wanna do that, no problem, really
j0rge
j0rge9mo ago
I'm afk but will handle it asap
EyeCantCU
EyeCantCU9mo ago
@tulip for the meantime I've approved the workflows. I can give the PRs a look over here in a bit. Apologies for my inactivity. Valve to our dishwasher broke and ruined the kitchen (we opened a help request over a month ago for issues with the dishwasher and the complex never looked into it after we tried getting a hold of them multiple times so... yeah)
tulip
tulip8mo ago
hii guys just a update about this project im not working on it right now because this week im super busy with lots of college things and whatever else ill be messing around with this a lot more next week it is not abandoned or anything im aiming to chose at least most of the current issues to consider this project in a good state we can also make the docs website by cloning stuff from getfleek.dev and changing the branding
bketelsen
bketelsen8mo ago
Blincus.dev is another one I did that we could steal
Want results from more Discord servers?
Add your server