14 lines
257 B
Nix
14 lines
257 B
Nix
|
# 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
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|