add aspects/programs/ home-manager modules

Program categories: graphics, media, office, utilities, web

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
William 2026-02-06 22:36:30 -03:00
parent e8e62c81e3
commit 92e16d0032
5 changed files with 164 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ ... }:
{
flake.modules = {
nixos.programs-media = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
# Audio
decibels
# Video
showtime
# Image Viewer
loupe
# Recording & Streaming
obs-studio
];
};
homeManager.programs-media = { pkgs, ... }: {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vkcapture
obs-backgroundremoval
obs-pipewire-audio-capture
];
};
};
};
}