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