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

View File

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

View File

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