clanCore/packages.nix: add gitMinimal
All checks were successful
checks / check-links (pull_request) Successful in 13s
checks / checks-impure (pull_request) Successful in 1m56s
checks / checks (pull_request) Successful in 4m53s

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