dea-files/hosts/sandalphon/games.nix
2026-01-09 20:43:39 -05:00

25 lines
397 B
Nix

{ pkgs, ... }:
{
imports = [ ./mcsr ];
# hardware = {
# xone.enable = true;
# xpadneo.enable = true;
# };
environment.systemPackages = with pkgs; [
prismlauncher # minecraft
r2modman
# osu-lazer-bin
];
programs = {
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
];
};
};
}