Fix overlay system

This commit is contained in:
Filippo Berto 2022-12-21 12:32:38 +01:00
parent a901833d0d
commit 3dbcec2732
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -40,9 +40,9 @@
overlays = [
# Combine stable and unstable packages
(_: _: {
stable = import nixpkgs { inherit config overlays; };
unstable = import nixpkgs-u { inherit config overlays; };
(self: _: {
stable = import nixpkgs { inherit config overlays; inherit (self) system; };
unstable = import nixpkgs-u { inherit config overlays; inherit (self) system; };
})
# Nix rice