Fix deployments to ARM systems

This commit is contained in:
alejandro-angulo 2025-12-03 20:47:57 -08:00
parent 3cad488ee0
commit 3b815a2bb7

View file

@ -16,8 +16,9 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = environment.systemPackages = (
(with pkgs; [ with pkgs;
[
bat bat
bind # for dig bind # for dig
curl curl
@ -34,12 +35,13 @@ in
pre-commit pre-commit
progress progress
python3 python3
ragenix
ripgrep ripgrep
sqlite sqlite
tcpdump tcpdump
usbutils usbutils
wget wget
]) ]
++ [ inputs.agenix.packages.x86_64-linux.default ]; );
}; };
} }