flake: remove unused parameters

This commit is contained in:
Noa Aarts 2024-10-20 23:56:21 +02:00
parent 32594baba7
commit 07a2ae193a
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -7,7 +7,7 @@
};
};
outputs = { self, fenix, nixpkgs, ... }:
outputs = { fenix, nixpkgs, ... }:
let
allSystems = [
"x86_64-linux" # 64-bit Intel/AMD Linux
@ -23,7 +23,7 @@
in
{
packages = forAllSystems
({ system, pkgs, fpkgs }:
({ pkgs, fpkgs, ... }:
let
toolchain = fpkgs.minimal.toolchain;
in
@ -38,7 +38,7 @@
};
});
devShells = forAllSystems
({ system, pkgs, fpkgs }:
({ pkgs, fpkgs, ... }:
let
ffpkgs = fpkgs.complete;
in