15 lines
196 B
Nix
15 lines
196 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
|
|
# XBOX Controller
|
|
hardware.xone.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
lutris
|
|
prismlauncher
|
|
];
|
|
}
|