add nixos-facter to base system

This commit is contained in:
Jörg Thalheim
2024-10-29 13:26:08 +01:00
parent 20d79eac17
commit dec610cc03

View File

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