-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started
curl --proto '=https' --tlsv1.2 -sSfL https://worxbend.github.io/fluxion.cr/install.sh | shIf ~/.local/bin is not on your PATH, the installer says so and stops short
of editing your shell startup files. Adding the line yourself is one edit and
keeps Fluxion out of files it has no business touching.
Start from the machine you are on:
fluxion generate --output ~/.config/fluxion/default.yaml --preset developerThat is deliberately plain — a starting point to edit, not a finished profile. Open it and change the package list to what you actually want.
fluxion validate # would this run at all?
fluxion lint # is it a good profile?
fluxion doctor # is this host ready?
fluxion dry-run # what would it do?validate reports every problem at once, each anchored to the exact line:
error jobs[0].steps[0].packages[2]: package name contains unsafe shell characters: bad name
error jobs[0].steps[1].type: unsupported step type 'package'
Did you mean 'packages'?
When the dry run says what you expect:
fluxion applyFluxion records what worked. The second run is cheap:
fluxion apply --skip-already-installedA completed job is skipped only while its configuration is unchanged. Add a package and that job runs again — it is not marked done forever.
fluxion status # everything
fluxion status --missing # just what is left
fluxion diff # only what differs from this machineIf your machine is already set up and you want a profile describing it:
fluxion import packages --from-host --output packages.yaml
fluxion import flatpaks --from-host --output flatpaks.yamlBoth produce complete, valid profiles. Prune them heavily — an import lists everything, including things you installed once to try and never used again.