Swap default.nix for a shell.nix
This commit is contained in:
parent
f5fce902e8
commit
65a9123af2
@ -6,12 +6,11 @@
|
||||
},
|
||||
}: let
|
||||
pkgs = (import pkgsSrc) {};
|
||||
in {
|
||||
shell = pkgs.mkShell {
|
||||
name = "project-shell";
|
||||
buildInputs = [
|
||||
pkgs.go
|
||||
pkgs.golangci-lint
|
||||
];
|
||||
};
|
||||
in pkgs.mkShell {
|
||||
name = "project-shell";
|
||||
buildInputs = [
|
||||
pkgs.go
|
||||
pkgs.golangci-lint
|
||||
pkgs.gopls
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user