Initial commit

This commit is contained in:
Oliver Davies 2025-07-31 20:14:14 +01:00
commit bf83db808e
6 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ inputs, ... }:
{
imports = [
inputs.devshell.flakeModule
];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
go
gopls
];
};
};
}