commit 9870e5c239f676aba36567799286ecd2aa068632 (tree)
parent 290838e6e7d9d6c1abd5e34af42d681e23ef4403
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date: Mon, 15 Jan 2024 10:57:11 +0200
flake.nix: remove unnecessary `@ inputs`
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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;