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