mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-06-21 03:36:32 +05:30
12 lines
220 B
Nix
12 lines
220 B
Nix
{
|
|
flake.modules.nixos.gaming =
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
protontricks.enable = true;
|
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
|
};
|
|
};
|
|
}
|