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