Remove superfluous arguments

This commit is contained in:
SebastianStork 2025-04-07 23:59:09 +02:00
parent a184ad5219
commit 2e762023c8
2 changed files with 9 additions and 12 deletions

View file

@ -22,16 +22,13 @@
outputs = outputs =
{ flake-parts, ... }@inputs: { flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } ( flake-parts.lib.mkFlake { inherit inputs; } {
{ inputs, ... }: systems = [ "x86_64-linux" ];
{
systems = [ "x86_64-linux" ];
imports = [ imports = [
./flake/dev-shells.nix ./flake/dev-shells.nix
./flake/formatter.nix ./flake/formatter.nix
./flake/image-generators.nix ./flake/image-generators.nix
]; ];
} };
);
} }

View file

@ -1,6 +1,6 @@
{ {
perSystem = perSystem =
{ pkgs, system, ... }: { pkgs, ... }:
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = [ packages = [