update devshell overlay attribute

This commit is contained in:
Sam W 2023-02-28 17:12:42 +00:00
parent 474b7913fa
commit f33488cf07
3 changed files with 3 additions and 3 deletions

View File

@ -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; [];};

View File

@ -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 {

View File

@ -39,7 +39,7 @@
devShells.default = let
pkgs = import nixpkgs {
inherit system;
overlays = [devshell.overlay];
overlays = [devshell.overlays.default];
};
in
pkgs.devshell.mkShell {