reformat programs

This commit is contained in:
William 2026-02-07 10:00:06 -03:00
parent 0112637288
commit 6d28510dca
5 changed files with 124 additions and 129 deletions

View file

@ -2,28 +2,28 @@
{
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
nixos.programs-media =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
decibels
loupe
obs-studio
showtime
];
};
};
homeManager.programs-media =
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vkcapture
obs-backgroundremoval
obs-pipewire-audio-capture
];
};
};
};
}