1
0
Fork 0
nix-configuration/modules/apps/gaming.nix

27 lines
575 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, pkgs, ... }:
# Gaming-related settings
let
cfg = config.host.apps.gaming;
in
with lib;
{
options = {
host.apps.gaming.enable = mkEnableOption (mdDoc "Enables gaming features");
};
config = mkIf cfg.enable {
2024-03-02 12:58:30 -05:00
services.flatpak.packages = lib.mkIf config.services.flatpak.enable [
2024-02-29 09:53:34 -05:00
"gg.minion.Minion"
"com.valvesoftware.Steam"
"org.firestormviewer.FirestormViewer"
];
2024-03-11 12:27:30 -04:00
# Enable Xbox controller driver (XPadNeo)
boot = {
extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
kernelModules = [ "hid_xpadneo" ];
};
2024-02-29 09:53:34 -05:00
};
}