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.
This commit is contained in:
Martin Weinelt 2025-05-08 07:52:26 +02:00
parent 4c25278507
commit fbfd948535
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -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;
};