flake.nix: remove unnecessary `@ inputs`
This commit is contained in:
parent
290838e6e7
commit
9870e5c239
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue