1
0
Fork 0
nixos/services/udev.nix

11 lines
140 B
Nix

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