From 9870e5c239f676aba36567799286ecd2aa068632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Mon, 15 Jan 2024 10:57:11 +0200 Subject: [PATCH] flake.nix: remove unnecessary `@ inputs` --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index da613cb..0c6b186 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ pre-commit-hooks, geoip2-tarball, ... - } @ inputs: + }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs {inherit system;}; @@ -103,13 +103,13 @@ python3Packages.flake8 # TODO: vim integration via EXITINT? - # autopep8 --in-place --recursive . + # see 'make check' python3Packages.autopep8 ]; GEOIP_PATH = "${geoip-mmdb}"; E11SYNC_DEBUG = "1"; LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; - inherit (inputs.self.checks.${system}.pre-commit-check) shellHook; + inherit (self.checks.${system}.pre-commit-check) shellHook; }; formatter = pkgs.alejandra;