Skip to content

Commit

Permalink
Flake tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Jan 29, 2025
1 parent 4aa2556 commit 65c6ecb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
inherit system;
};

toolchain = fenix.packages.${system}.toolchainOf {
rustToolchain = fenix.packages.${system}.toolchainOf {
channel = "1.84";
date = "2025-01-09";
sha256 = "lMLAupxng4Fd9F1oDw8gx+qA0RuF7ou7xhNU8wgs0PU=";
};

rustPlatform = pkgs.makeRustPlatform {
cargo = toolchain.cargo;
rustc = toolchain.rustc;
cargo = rustToolchain.cargo;
rustc = rustToolchain.rustc;
};

cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
Expand All @@ -49,17 +49,17 @@

packages = with pkgs; [
# Rust toolchain
toolchain.toolchain
rustToolchain.toolchain

# Code formatting tools
# Code formatting
treefmt
alejandra
mdl

# Rust dependency linting
cargo-deny

# Container image management tool
# Container image management
skopeo
];

Expand Down

0 comments on commit 65c6ecb

Please sign in to comment.