nix-da/options/system/roles/gaming.nix
Nydragon 554e706717
All checks were successful
/ test (push) Successful in 31s
feat: add gaming role
2025-01-30 18:39:04 +01:00

36 lines
691 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;
gamescopeSession.enable = true; # Adds a steam entry to the login manager
extest.enable = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
environment.systemPackages = with pkgs; [
lutris
mangohud
];
};
}