Swap default.nix for a shell.nix

This commit is contained in:
Brian Picciano 2024-10-29 12:01:52 +01:00
parent f5fce902e8
commit 65a9123af2

View File

@ -6,12 +6,11 @@
}, },
}: let }: let
pkgs = (import pkgsSrc) {}; pkgs = (import pkgsSrc) {};
in { in pkgs.mkShell {
shell = pkgs.mkShell { name = "project-shell";
name = "project-shell"; buildInputs = [
buildInputs = [ pkgs.go
pkgs.go pkgs.golangci-lint
pkgs.golangci-lint pkgs.gopls
]; ];
};
} }