mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 09:46:34 +05:30
refactor: create obs module
This commit is contained in:
@ -20,6 +20,7 @@
|
|||||||
../../modules/home/easyeffects
|
../../modules/home/easyeffects
|
||||||
../../modules/home/discord
|
../../modules/home/discord
|
||||||
../../modules/home/kdeconnect
|
../../modules/home/kdeconnect
|
||||||
|
../../modules/home/obs-studio
|
||||||
];
|
];
|
||||||
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
@ -55,7 +56,6 @@
|
|||||||
stable.rustdesk-flutter
|
stable.rustdesk-flutter
|
||||||
rawtherapee
|
rawtherapee
|
||||||
stable.beekeeper-studio
|
stable.beekeeper-studio
|
||||||
obs-studio
|
|
||||||
libreoffice-qt
|
libreoffice-qt
|
||||||
spotify
|
spotify
|
||||||
stremio
|
stremio
|
||||||
|
6
modules/home/obs-studio/default.nix
Normal file
6
modules/home/obs-studio/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
programs.obs-studio = {
|
||||||
|
enable = true;
|
||||||
|
plugins = with pkgs.obs-studio-plugins; [obs-vaapi];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user