nixconf/modules/features/layers/content-creation.nix
2026-04-11 16:52:46 -05:00

24 lines
532 B
Nix

{ self, inputs, ... }:
{
flake.nixosModules.contentCreation =
{ pkgs, lib, ... }:
{
config = {
environment.systemPackages = with pkgs; [
audacity
chatterino7
spek
(pkgs.wrapOBS {
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-vaapi
obs-gstreamer
obs-vkcapture
];
})
];
};
};
}