reciproka-ops/modules/piCommon/default.nix

15 lines
250 B
Nix
Raw Normal View History

2024-02-29 17:18:54 +00:00
# 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
];
};
}