1
0
Fork 0
nixos/services/udev.nix

8 lines
128 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2019-02-26 13:44:40 +01:00
with lib;
mkIf (elem "udev" config.machine.services) {
hardware.steam-hardware.enable = true;
2019-02-26 13:44:40 +01:00
}