1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-28 19:17:44 +00:00
No description
Find a file
2025-07-03 22:46:54 +03:00
front feat: add default config for web version 2025-04-10 17:04:39 -06:00
integrations feat: release 4.0.0 2025-04-10 16:29:41 -06:00
src list&attr_set: add spaces to [] and {} when not empty 2025-07-03 22:46:54 +03:00
.envrc refactor: remove nix3 alias 2022-02-16 21:40:16 -05:00
.gitattributes chore: Ignore the generated list of nixpkgs files for language stats 2022-02-19 10:50:47 -05:00
.gitignore test: add cli tests 2024-12-09 00:24:19 -07:00
.pre-commit-entry.sh feat: release 4.0.0 2025-04-10 16:29:41 -06:00
.pre-commit-hooks.yaml feat: pre-commit hook with no prerequisites 2023-01-15 12:44:19 -08:00
alejandra.toml doc: experimental configuration options 2024-12-08 20:49:52 -07:00
buildkite-cd.yaml feat: better ci logs 2025-04-11 13:17:47 -06:00
buildkite-ci.yaml feat: better ci logs 2025-04-11 13:17:47 -06:00
buildkite.yaml feat: better ci logs 2025-04-11 13:17:47 -06:00
Cargo.lock feat: release 4.0.0 2025-04-10 16:29:41 -06:00
Cargo.toml refac: change cargo resolver 2024-11-03 19:52:05 -07:00
CHANGELOG.md feat: release 4.0.0 2025-04-10 16:29:41 -06:00
CODE_OF_CONDUCT.md docs: add a code of conduct [skip ci] 2022-07-12 13:19:55 -06:00
CONTRIBUTING.md docs: add a contributing file [skip ci] 2022-07-12 13:17:51 -06:00
default.nix feat: simplify nix stable installation 2022-06-23 12:38:08 -06:00
flake.lock feat: update deps 2024-11-03 19:52:05 -07:00
flake.nix feat: release 4.0.0 2025-04-10 16:29:41 -06:00
README.md docs: add homebrew installation method 2025-07-02 22:30:46 -05:00
rustfmt.toml test: more tests 2025-02-08 12:44:29 -07:00
STYLE.md docs: link discussions [skip ci] 2022-07-12 13:22:36 -06:00
treefmt.toml Rename all testfiles to have a file extension 2023-03-24 11:41:04 -06:00
UNLICENSE feat: release into the public domain 2022-01-09 22:14:23 -05:00

Alejandra 💅

The Uncompromising Nix Code Formatter

CI/CD Coverage License: The Unlicense style: Alejandra

Try it on your browser! here

Features

  • ✔️ Fast

    It's written in Rust and formats Nixpkgs in just a few seconds. 1

  • ✔️ Powerful

    We define a comprehensive style for all possible combinations of the Nix expression language.

  • ✔️ Reliable

    High coverage, battle tested.

    From Nix's eyes, code is just the same. 2

  • ✔️ Beautiful

    Beauty is subjective, right?

    We started from the original style of Nixpkgs, and then we applied the feedback of developers who have used Nix at scale for several years, producing a very well-grounded style guide. For everything else, some pieces of the style are configurable.

  • ✔️ Transparent

    You won't notice the formatter after a while.

    Humans care about the content, machines about the style!

  • ✔️ Native

    We integrate with common code editors and workflows:

Getting started

On the web editor

Please visit: kamadorueda.github.io/alejandra.

Prebuilt binaries

You can download a binary for your platform:

Make it executable ($ chmod +x) and run Alejandra with:

$ ./alejandra --help

or:

$ /path/to/alejandra --help

From Nixpkgs

Please visit: search.nixos.org/packages?query=alejandra.

Nix installation

  • Nix stable:

    $ nix-env -ivf https://github.com/kamadorueda/alejandra/tarball/4.0.0
    
  • Nix with Flakes:

    $ nix profile install github:kamadorueda/alejandra/4.0.0
    

Then run Alejandra with:

$ alejandra --help

NixOS installation

  • Nix stable:

    let
      alejandra =
        (import (builtins.fetchTarball {
          url = "https://github.com/kamadorueda/alejandra/tarball/4.0.0";
          sha256 = "0000000000000000000000000000000000000000000000000000";
        }) {})
        .outPath;
    in {
      environment.systemPackages = [alejandra];
    }
    
  • Nix with Flakes:

    {
      inputs = {
        nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    
        alejandra.url = "github:kamadorueda/alejandra/4.0.0";
        alejandra.inputs.nixpkgs.follows = "nixpkgs";
      };
    
      outputs = {alejandra, nixpkgs, ...}: {
        nixosConfigurations = {
          example = nixpkgs.lib.nixosSystem rec {
            # We support: aarch64-darwin, aarch64-linux, i686-linux, x86_64-darwin, x86_64-linux
            system = "x86_64-linux";
    
            modules = [
              {
                environment.systemPackages = [alejandra.defaultPackage.${system}];
              }
              # Import your other modules here
              # ./path/to/my/module.nix
              # ...
            ];
          };
        };
      };
    }
    

From Homebrew

$ brew install alejandra

(experimental) Configuration Options

You can configure Alejandra through a file named alejandra.toml. This file will be automatically detected if found in the same directory where Alejandra is being run from, or you can tell Alejandra to use a different location by using the --experimental-config ./path/to/alejandra.toml flag in the CLI.

You can find a full configuration file and the supported options here: alejandra.toml.

Cool libraries

Alternatives

Versioning

We use semver to version Alejandra.

Our public API consists of:

  • The formatting rules (a.k.a. the style).
  • The CLI tool ($ alejandra), command line flags, positional arguments, exit codes, and stdout.

With the exception of those explicitly marked as "experimental".

Changelog

Please read: CHANGELOG.

Contributors

The following people have helped improving Alejandra.

Thank you ❤️

Bobbe, Connor Baker, Daniel Bast, David Arnold, David Hauer, esf, Fabian Möller, Florian Finkernagel, Jamie Quigley, Joachim Ernst, Johannes Kirschbauer, Jörg Thalheim, Kevin Amado (Email, LinkedIn), Loïc Reynier, Matthew Kenigsberg, Michael Utz, Mr Hedgehog, Nathan Henrie, Norbert Melzer, Pablo Ovelleiro Corral, Patrick Stevens, Piegames, Rebecca Turner, Rehno Lindeque, Rok Garbas, Ryan Mulligan, Thomas Bereknyei, Tobias Bora, Tristan Maat, UserSv4, Victor Engmark, Vincent Ambo, Vladimir Fetisov, and Yorick van Pelt.

Footnotes


  1. Running on a machine with:

    • CPU: 4 physical, 4 logical, 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz
    • MHz: from 400 to 4700 MHz
    • BogoMips: 5606.40
    • Cache L3: 12 MiB

    Using:

    # x86_64-unknown-linux-gnu
    $ time alejandra --threads $threads /path/to/nixpkgs
    

    Results:

    $threads Seconds
    1 45
    2 25
    4 14
    ↩︎
  2. The methodology to claim this is:

    1. Checkout Nixpkgs and run:

      $ nix-env -qaf . --drv-path --xml > before
      
    2. Now format with Alejandra and run:

      $ nix-env -qaf . --drv-path --xml > after
      

    As of 2022-06-22, there are 41 differences in a set of 38109 derivations because of things like this:

    goDeps = ./deps.nix;
    

    Since ./deps.nix was also formatted you get a semantical difference.

    This is something that should be solved on Nixpkgs and not a bug in Alejandra. For example:

    ↩︎