Files
FxNet/quirks/steam.nix
2025-11-06 14:06:07 +03:00

15 lines
182 B
Nix

{ pkgs, ... }:
{
imports = [
./32bit.nix
];
hardware = {
steam-hardware.enable = true;
};
environment.systemPackages = [
pkgs.steam-devices-udev-rules
];
}