From 875ee61aa04a070dc64d860153d0e03d553a3149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 21 Jul 2023 13:08:51 +0200 Subject: [PATCH] revert formatting from nixpkgs-fmt --- flake.nix | 5 +---- templates/python-project/shell.nix | 4 +--- 2 files changed, 2 insertions(+), 7 deletions(-) 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;