From fbfd948535bcbe98f9ec189d12164ec0ced86749 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 8 May 2025 07:52:26 +0200 Subject: [PATCH] flake.nix: remove clamav from devshell, add glab With glab we provide the GitLab CLI utility to interact programatically with the platform. Useful for checking our Merge request branches for example. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b2ae304..96ffb21 100644 --- a/flake.nix +++ b/flake.nix @@ -182,7 +182,7 @@ devShells.${system}.default = pkgs.mkShellNoCC { inputsFrom = [ documentation ]; packages = with pkgs; [ - clamav + glab ] ++ self.checks.${system}.pre-commit.enabledPackages; shellHook = self.checks.${system}.pre-commit.shellHook; };