nix-da/options/system/roles/gaming.nix
nydragon b8781fff93
Some checks failed
/ test (push) Failing after 2s
chore: enable docker
2025-02-22 17:51:28 +01:00

37 lines
649 B
Nix

{
lib,
pkgs,
config,
...
}:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.modules.system.roles.gaming;
in
{
options.modules.system.roles.gaming = {
enable = mkEnableOption "gaming features";
};
config = mkIf cfg.enable {
programs.gamescope = {
enable = true;
capSysNice = true;
};
programs.steam = {
enable = true;
extest.enable = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
mangohud
heroic
];
};
}