mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
Add gaming config
This commit is contained in:
parent
21e8a7fa65
commit
3793724043
14
common/gaming.nix
Normal file
14
common/gaming.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
steam
|
||||
wineWowPackages.stable
|
||||
wine
|
||||
(wine.override { wineBuild = "wine64"; })
|
||||
wineWowPackages.staging
|
||||
winetricks
|
||||
wineWowPackages.waylandFull
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue