nix-da/options/system/roles/gaming.nix
nydragon 4581e8ff1f
Some checks failed
/ test (push) Failing after 2s
feat: add freshrss and calibre-web
2025-02-18 19:05:48 +01:00

38 lines
662 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; [
lutris
mangohud
heroic
];
};
}