10 lines
140 B
Nix
10 lines
140 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
mkIf (elem "udev" config.machine.services) {
|
|
hardware.steam-hardware.enable = true;
|
|
}
|