flake: do not use explicit inputs

This ends up being more annoying than useful most of the time anyway...

Make a note that we can't just eta-reduce the outputs, due to a nix
limitation on flake outputs (see [1]).

[1]: https://github.com/NixOS/nix/issues/4384
This commit is contained in:
Bruno BELANYI 2023-05-03 14:39:58 +00:00
parent debdadbd1a
commit bd6b7ca9e2
1 changed files with 2 additions and 12 deletions

View File

@ -65,16 +65,6 @@
};
};
outputs =
inputs @
{ self
, agenix
, flake-parts
, futils
, home-manager
, nixpkgs
, nur
, pre-commit-hooks
}:
import ./flake inputs;
# Can't eta-reduce a flake outputs...
outputs = inputs: import ./flake inputs;
}