mio-ops/profiles/pi_common.nix

15 lines
252 B
Nix
Raw Normal View History

2019-10-16 22:03:24 +00:00
# Configuration common to all my servers
{ config, pkgs, lib, ... }:
{
2021-11-16 04:57:23 +00:00
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
};
}