Toolchain/nix: Format nix files

The nixfmt-rfc-style package was used.
This commit is contained in:
vini 2024-09-19 02:42:29 -03:00 committed by Nico Weber
parent 5909661f10
commit 8307797859
3 changed files with 24 additions and 8 deletions

View file

@ -1,4 +1,7 @@
{ pkgs ? import <nixpkgs> { } }: with pkgs;
{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell.override { stdenv = gcc13Stdenv; } {
packages = [

View file

@ -1,4 +1,7 @@
{ pkgs ? import <nixpkgs> { } }: with pkgs;
{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell.override { stdenv = gcc13Stdenv; } {
packages = [

View file

@ -6,10 +6,20 @@
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils, }: utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = import ./Toolchain { inherit pkgs; };
devShells.ladybird = import ./Ladybird { inherit pkgs; };
});
outputs =
{
self,
nixpkgs,
utils,
}:
utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = import ./Toolchain { inherit pkgs; };
devShells.ladybird = import ./Ladybird { inherit pkgs; };
}
);
}