Add Nix flake
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
Oliver Davies 2025-07-29 21:54:35 +01:00
parent 4b865f379b
commit 6be1c9d65c
8 changed files with 135 additions and 25 deletions

View file

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

View file

@ -0,0 +1,3 @@
{
systems = [ "x86_64-linux" ];
}