Flake: Fix shells
This commit is contained in:
15
shells/default.nix
Normal file
15
shells/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ ... }:
|
||||
let
|
||||
forEachSystem =
|
||||
inputs.nixpkgs.lib.genAttrs [ "aarch64-linux" "x86_64-linux" ];
|
||||
in
|
||||
forEachSystem (system:
|
||||
let
|
||||
overlays = import ./pkgs/overlay.nix { inherit pkgs; };
|
||||
overrides = { custom = import ./pkgs { inherit pkgs; }; };
|
||||
pkgs = import inputs.nixpkgs { inherit system overlays; } // overrides;
|
||||
in {
|
||||
default = import ./shells/devsh { inherit pkgs; };
|
||||
devsh = import ./shells/devsh { inherit pkgs; };
|
||||
}
|
||||
)
|
Reference in New Issue
Block a user