1
0
Fork 0
forked from dea/dea-files
flake-dea/hosts/sandalphon/games.nix

24 lines
404 B
Nix
Raw Normal View History

2026-03-07 13:08:30 +10:00
{upkgs, ...}: {
2026-01-09 20:43:39 -05:00
# hardware = {
# xone.enable = true;
# xpadneo.enable = true;
# };
2026-03-07 13:08:30 +10:00
environment.systemPackages = with upkgs; [
2026-01-09 20:43:39 -05:00
prismlauncher # minecraft
r2modman
# osu-lazer-bin
waywall
glfw3-minecraft
2026-01-09 20:43:39 -05:00
];
programs = {
obs-studio = {
enable = true;
2026-03-07 13:08:30 +10:00
plugins = with upkgs.obs-studio-plugins; [
2026-01-09 20:43:39 -05:00
obs-pipewire-audio-capture
];
};
};
}