parent
4b865f379b
commit
6be1c9d65c
8 changed files with 135 additions and 25 deletions
18
flake-modules/dev-shell.nix
Normal file
18
flake-modules/dev-shell.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.devshell.flakeModule
|
||||
];
|
||||
|
||||
perSystem =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
devshells.default = {
|
||||
packages = with pkgs; [
|
||||
go
|
||||
gopls
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Reference in a new issue