Files
FxNet/quirks/steam.nix

14 lines
181 B
Nix

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