mio-ops/Deployments/pi_common.nix

14 lines
257 B
Nix
Raw Normal View History

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; [
lsusb # Tools for working with USB devices, such as lsusb
];
};
}