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
pkgs = (import pkgsSrc) {};
in {
shell = pkgs.mkShell {
in pkgs.mkShell {
name = "project-shell";
buildInputs = [
pkgs.go
pkgs.golangci-lint
pkgs.gopls
];
};
}