1
0
Fork 0
nix-configuration/modules/apps/gaming.nix
2024-06-25 14:13:15 -04:00

40 lines
858 B
Nix

{
config,
lib,
pkgs,
...
}:
# Gaming-related settings
let
cfg = config.aux.system.apps.gaming;
reset-controllers-script = pkgs.writeShellScriptBin "reset-controllers" ''
#!/usr/bin/env bash
sudo rmmod hid_xpadneo && sudo modprobe hid_xpadneo
sudo systemctl restart bluetooth.service
'';
in
with lib;
{
options = {
aux.system.apps.gaming.enable = mkEnableOption (mdDoc "Enables gaming features");
};
config = mkIf cfg.enable {
aux.system.ui.flatpak = {
enable = true;
packages = [
"gg.minion.Minion"
"com.valvesoftware.Steam"
"org.firestormviewer.FirestormViewer"
];
};
# Enable Xbox controller driver (XPadNeo)
hardware.xpadneo.enable = true;
# Add script to restart xpadneo in case of issues
aux.system.packages = [ reset-controllers-script ];
};
}