dea-files/hosts/sandalphon/games.nix

27 lines
429 B
Nix

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