mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
28 lines
391 B
Nix
28 lines
391 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs = {
|
|
ccache = {
|
|
enable = true;
|
|
cacheDir = "/media/data/.ccache";
|
|
};
|
|
|
|
obs-studio = {
|
|
enable = true;
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
wlrobs
|
|
obs-backgroundremoval
|
|
obs-pipewire-audio-capture
|
|
obs-vaapi
|
|
obs-gstreamer
|
|
obs-vkcapture
|
|
];
|
|
};
|
|
};
|
|
}
|