feat: format via 'ls **/*.nix | each { |it| nixfmt $it.name }'

This commit is contained in:
Ryan Yin
2025-07-30 12:17:24 +08:00
parent d10b30b06b
commit 13bb77108c
219 changed files with 2103 additions and 1728 deletions

View File

@@ -10,65 +10,73 @@
};
};
outputs = {
nixpkgs,
fenix,
...
}: let
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
# Helper function to generate a set of attributes for each system
forAllSystems = func: (nixpkgs.lib.genAttrs systems func);
in {
devShells = forAllSystems (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [fenix.overlays.default];
};
lib = pkgs.lib;
in {
default = pkgs.mkShell rec {
nativeBuildInputs = with pkgs; [
pkg-config
clang
# lld is much faster at linking than the default Rust linker
lld
];
buildInputs = with pkgs;
[
# rust toolchain
(pkgs.fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
# use rust-analyzer-nightly for better type inference
rust-analyzer-nightly
cargo-watch
]
# https://github.com/bevyengine/bevy/blob/v0.14.2/docs/linux_dependencies.md#nix
++ (lib.optionals pkgs.stdenv.isLinux [
udev
alsa-lib
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr # To use the x11 feature
libxkbcommon
wayland # To use the wayland feature
])
++ (pkgs.lib.optionals pkgs.stdenv.isDarwin [
# https://discourse.nixos.org/t/the-darwin-sdks-have-been-updated/55295/1
apple-sdk_15
]);
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
};
});
};
outputs =
{
nixpkgs,
fenix,
...
}:
let
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
# Helper function to generate a set of attributes for each system
forAllSystems = func: (nixpkgs.lib.genAttrs systems func);
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ fenix.overlays.default ];
};
lib = pkgs.lib;
in
{
default = pkgs.mkShell rec {
nativeBuildInputs = with pkgs; [
pkg-config
clang
# lld is much faster at linking than the default Rust linker
lld
];
buildInputs =
with pkgs;
[
# rust toolchain
(pkgs.fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
# use rust-analyzer-nightly for better type inference
rust-analyzer-nightly
cargo-watch
]
# https://github.com/bevyengine/bevy/blob/v0.14.2/docs/linux_dependencies.md#nix
++ (lib.optionals pkgs.stdenv.isLinux [
udev
alsa-lib
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr # To use the x11 feature
libxkbcommon
wayland # To use the wayland feature
])
++ (pkgs.lib.optionals pkgs.stdenv.isDarwin [
# https://discourse.nixos.org/t/the-darwin-sdks-have-been-updated/55295/1
apple-sdk_15
]);
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
};
}
);
};
}