mio-ops/profiles/pi_common.nix
2021-11-16 17:53:38 +10:00

15 lines
252 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
];
};
}