Files
nixos-config/modules/system/gaming.nix
T
2025-10-18 21:43:14 +02:00

20 lines
704 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
options.lumpiasty.gaming = lib.mkEnableOption "Enable options specific to gaming computers";
config = lib.mkIf config.lumpiasty.gaming {
# https://github.com/NixOS/nixpkgs/blob/10e687235226880ed5e9f33f1ffa71fe60f2638a/nixos/modules/programs/steam.nix
hardware.graphics = {
enable = true;
enable32Bit = true;
};
services.pulseaudio.support32Bit = config.services.pulseaudio.enable;
services.pipewire.alsa.support32Bit = config.services.pipewire.alsa.enable;
programs.gamemode.enable = true;
users.users = {
user = lib.mkIf config.lumpiasty.users.user {
extraGroups = ["gamemode"];
};
};
};
}