This commit is contained in:
Grigory Shipunov 2023-02-09 23:22:43 +01:00
parent c31a074da0
commit f489e7bc17
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
3 changed files with 3 additions and 6 deletions

View file

@ -44,7 +44,7 @@
}) })
// //
{ {
overlays.default = final: prev: { overlays.default = _final: prev: {
inherit (self.packages.${prev.system}) inherit (self.packages.${prev.system})
slick; slick;
}; };

View file

@ -39,8 +39,8 @@
# override default nix shell nixpkgs# behaviour to use current flake lock # override default nix shell nixpkgs# behaviour to use current flake lock
nix.registry = nix.registry =
let flakes = lib.filterAttrs (name: value: value ? outputs) inputs.self.inputs; let flakes = lib.filterAttrs (_name: value: value ? outputs) inputs.self.inputs;
in builtins.mapAttrs (name: v: { flake = v; }) flakes; in builtins.mapAttrs (_name: v: { flake = v; }) flakes;
nix.nixPath = lib.mapAttrsToList (name: value: "${name}=${value.outPath}") inputs.self.inputs; nix.nixPath = lib.mapAttrsToList (name: value: "${name}=${value.outPath}") inputs.self.inputs;

View file

@ -1,3 +0,0 @@
{ pkgs, ... }
{
}