mio-ops/profiles/pi_common.nix

15 lines
250 B
Nix
Raw Normal View History

2019-10-16 22:03:24 +00:00
# Configuration common to all my servers
{
2022-03-07 14:26:15 +00:00
config,
pkgs,
lib,
...
}: {
environment = {
# Set the system-wide environment
systemPackages = with pkgs; [
usbutils # Tools for working with USB devices, such as lsusb
];
2019-10-16 22:03:24 +00:00
};
}