fix(nix): remove unused self value

This commit is contained in:
2025-11-27 15:39:36 +01:00
parent ce28426075
commit 03bd411c18
2 changed files with 1 additions and 3 deletions

View File

@@ -32,7 +32,6 @@
};
outputs = {
self,
nixpkgs,
flake-utils,
rust-overlay,
@@ -52,7 +51,7 @@
formatter = alejandra.defaultPackage.${system};
packages = import ./nix/package.nix {inherit pkgs rustPlatform;};
devShell = import ./nix/shell.nix {
inherit inputs pkgs self rustVersion;
inherit inputs pkgs rustVersion;
};
}
);