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