nix-config/common/pc/steam.nix
2021-02-25 21:08:55 -05:00

10 lines
177 B
Nix

{ config, pkgs, ... }:
{
programs.steam.enable = true;
hardware.steam-hardware.enable = true; # steam controller
users.users.googlebot.packages = [
pkgs.steam
];
}