reciproka-ops/modules/piCommon/default.nix
2024-03-01 03:18:54 +10:00

15 lines
250 B
Nix

# Configuration common to all my servers
{
config,
pkgs,
lib,
...
}: {
environment = {
# Set the system-wide environment
systemPackages = with pkgs; [
usbutils # Tools for working with USB devices, such as lsusb
];
};
}