feat: add gimp and obs

Signed-off-by: jolheiser <git@jolheiser.com>
homepage
jolheiser 2024-09-03 21:44:42 -05:00
parent bd1cb035c3
commit 253f360ccf
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./firefox.nix
./flameshot.nix
./ghostty.nix
./obs.nix
./spotify.nix
./wezterm.nix
./zed.nix
@ -16,6 +17,7 @@
delve
discord
obsidian
gimp
# LSPs
marksman

7
apps/gui/obs.nix 100644
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = [ pkgs.obs-studio-plugins.obs-webkitgtk ];
};
}