From 2e762023c8ae067731cefc88575475ee4476deda Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 7 Apr 2025 23:59:09 +0200 Subject: [PATCH] Remove superfluous arguments --- flake.nix | 19 ++++++++----------- flake/dev-shells.nix | 2 +- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/flake.nix b/flake.nix index 86c63ac..46220f9 100644 --- a/flake.nix +++ b/flake.nix @@ -22,16 +22,13 @@ outputs = { flake-parts, ... }@inputs: - flake-parts.lib.mkFlake { inherit inputs; } ( - { inputs, ... }: - { - systems = [ "x86_64-linux" ]; + flake-parts.lib.mkFlake { inherit inputs; } { + systems = [ "x86_64-linux" ]; - imports = [ - ./flake/dev-shells.nix - ./flake/formatter.nix - ./flake/image-generators.nix - ]; - } - ); + imports = [ + ./flake/dev-shells.nix + ./flake/formatter.nix + ./flake/image-generators.nix + ]; + }; } diff --git a/flake/dev-shells.nix b/flake/dev-shells.nix index 3d9cc29..6b03113 100644 --- a/flake/dev-shells.nix +++ b/flake/dev-shells.nix @@ -1,6 +1,6 @@ { perSystem = - { pkgs, system, ... }: + { pkgs, ... }: { devShells.default = pkgs.mkShell { packages = [