Gaming-related NixOS and home-manager configuration: flatpak, hardware, launchers, mangohud, steam Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
299 B
Nix
17 lines
299 B
Nix
{ ... }:
|
|
|
|
{
|
|
flake.modules.nixos.gaming-steam = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
steam-run
|
|
];
|
|
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
extraCompatPackages = [ pkgs.proton-ge-bin ];
|
|
};
|
|
gamemode.enable = true;
|
|
};
|
|
};
|
|
}
|