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