1
0
Fork 0
nixos/services/udev.nix

8 lines
128 B
Nix

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