nix-conf/system/gaming.nix
2024-03-24 23:16:17 +04:00

24 lines
509 B
Nix

{ config, pkgs, ... }:
{
nix = {
settings = {
warn-dirty = false;
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
substituters = ["https://nix-gaming.cachix.org"];
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
};
environment.systemPackages = with pkgs; [
steam
steam-run
(lutris.override {
extraPkgs = pkgs: [
wineWowPackages.stable
winetricks
];
})
];
}