clanCore/packages.nix: add gitMinimal

WIthout this, deployment via `clan machines update` will fail on the remote machine if the flake.nix has a git input
This commit is contained in:
DavHau 2024-03-25 11:47:32 +07:00
parent 644c85866e
commit 4b8b1107ba

View File

@ -1,11 +1,13 @@
{ pkgs, ... }:
{
# essential debugging tools for networked services
environment.systemPackages = [
# essential debugging tools for networked services
pkgs.dnsutils
pkgs.tcpdump
pkgs.curl
pkgs.jq
pkgs.htop
# needed to deploy via `clan machines update` if the flake has a git input
pkgs.gitMinimal
];
}