fixes & cleanup

This commit is contained in:
soraefir
2026-06-20 10:19:18 +02:00
parent b55afcfdf6
commit 9169630b43
10 changed files with 204 additions and 103 deletions
+15 -9
View File
@@ -1,13 +1,19 @@
{ inputs, ... }:
{
inputs,
mkPkgs,
supportedSystems,
...
}:
let
forEachSystem =
inputs.nixpkgs.lib.genAttrs [ "aarch64-linux" "x86_64-linux" ];
in forEachSystem (system:
forEachSystem = inputs.nixpkgs.lib.genAttrs supportedSystems;
in
forEachSystem (
system:
let
overlays = import ../overlays { inherit inputs pkgs; };
overrides = { custom = import ../packages { inherit pkgs; }; };
pkgs = import inputs.nixpkgs { inherit system overlays; } // overrides;
in {
pkgs = mkPkgs system;
in
{
default = import ./devsh { inherit pkgs; };
devsh = import ./devsh { inherit pkgs; };
})
}
)