update devshell overlay attribute
This commit is contained in:
parent
474b7913fa
commit
f33488cf07
|
@ -14,7 +14,7 @@
|
|||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
|
||||
overlays = [devshell.overlay];
|
||||
overlays = [devshell.overlays.default];
|
||||
};
|
||||
in {
|
||||
devShells.default = pkgs.devshell.mkShell {packages = with pkgs; [];};
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [devshell.overlay];
|
||||
overlays = [devshell.overlays.default];
|
||||
};
|
||||
in rec {
|
||||
packages.default = pkgs.buildGoModule {
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
devShells.default = let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [devshell.overlay];
|
||||
overlays = [devshell.overlays.default];
|
||||
};
|
||||
in
|
||||
pkgs.devshell.mkShell {
|
||||
|
|
Loading…
Reference in New Issue