From 6432b2bc5a4921f6a506a843efc2cc6cba353eba Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 6 Mar 2026 00:08:45 +0300 Subject: [PATCH] nix: add more formatters Signed-off-by: NotAShelf Change-Id: I86d867bf11e12dc42375a0b3714445326a6a6964 --- nix/shell.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index 35186cc..a144088 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -1,14 +1,18 @@ { - mkShellNoCC, + mkShell, go, gopls, delve, + gofumpt, + golines, }: -mkShellNoCC { +mkShell { name = "go"; packages = [ delve go gopls + gofumpt + golines ]; }