AquaticOS/modules/programs/aquatic/aquatic-gaming/aquatic-gaming.nix

20 lines
No EOL
357 B
Nix

{ ... }:
{
flake.modules.nixos.aquatic-gaming =
{ pkgs, ... }:
{
nixpkgs.config.allowUnfreePackages = [
"parsec-bin"
];
boot.kernelModules = [ "ntsync" ];
programs.gamescope.enable = true;
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
prismlauncher
parsec-bin
];
};
}