6 lines
143 B
Nix
6 lines
143 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
services.udev.packages = with pkgs; lib.mkIf config.system.desktop.enable [
|
|
game-devices-udev-rules
|
|
];
|
|
}
|