1
0
Fork 0
nixos/services/udev.nix

11 lines
140 B
Nix
Raw Permalink Normal View History

2023-09-11 20:23:04 +02:00
{
config,
lib,
pkgs,
...
}:
with lib;
2023-09-11 20:23:04 +02:00
mkIf (elem "udev" config.machine.services) {
hardware.steam-hardware.enable = true;
}