diff --git a/flake.nix b/flake.nix index be2d983..8e4ddfe 100644 --- a/flake.nix +++ b/flake.nix @@ -12,10 +12,7 @@ }; outputs = inputs @ { flake-parts, ... }: - flake-parts.lib.mkFlake { inherit inputs; } ({ lib - , config - , ... - }: { + flake-parts.lib.mkFlake { inherit inputs; } ({ lib, config, ... }: { systems = lib.systems.flakeExposed; imports = [ ./flake-parts/packages.nix diff --git a/templates/python-project/shell.nix b/templates/python-project/shell.nix index 861fe5e..15a941b 100644 --- a/templates/python-project/shell.nix +++ b/templates/python-project/shell.nix @@ -1,6 +1,4 @@ -{ pkgs ? import { } -, -}: +{ pkgs ? import { } }: let lib = pkgs.lib; python3 = pkgs.python3;