Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
Showing only changes of commit dedd24dc65 - Show all commits

View file

@ -1,6 +1,8 @@
{ inputs, lib, ... }: final: prev: { { inputs, lib, ... }: final: prev: {
mkNixPak = inputs.nixpak.lib.nixpak { mkNixPak = let
inherit (prev) lib; pkgs = prev;
inherit prev; in inputs.nixpak.lib.nixpak {
inherit (pkgs) lib;
inherit pkgs;
}; };
} }