feat: comment out nixpkgs-unstable, we use unstable by default (#232)

* feat: comment out nixpkgs-unstable, we use unstable by default

Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>

* fix: typo...

---------

Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>
This commit is contained in:
Ryan Yin
2025-11-01 21:21:57 +08:00
committed by GitHub
parent 0c2dcc0734
commit 34fdd92351
18 changed files with 93 additions and 107 deletions

View File

@@ -1,9 +1,6 @@
{
lib,
pkgs,
pkgs-unstable,
# pkgs-stable,
nur-ryan4yin,
blender-bin,
...
}:
@@ -43,36 +40,32 @@
# live streaming
obs-studio = {
enable = pkgs.stdenv.isx86_64;
plugins =
with pkgs.obs-studio-plugins;
[
# screen capture
wlrobs
# obs-ndi
# obs-nvfbc
obs-teleport
# obs-hyperion
droidcam-obs
obs-vkcapture
obs-gstreamer
input-overlay
obs-multi-rtmp
obs-source-clone
obs-shaderfilter
obs-source-record
obs-livesplit-one
looking-glass-obs
obs-vintage-filter
obs-command-source
obs-move-transition
obs-backgroundremoval
# advanced-scene-switcher
obs-pipewire-audio-capture
]
++ (lib.optionals pkgs.stdenv.isx86_64 [
obs-vaapi
obs-3d-effect
]);
plugins = with pkgs.obs-studio-plugins; [
# screen capture
wlrobs
# obs-ndi
# obs-nvfbc
obs-teleport
# obs-hyperion
droidcam-obs
obs-vkcapture
obs-gstreamer
input-overlay
obs-multi-rtmp
obs-source-clone
obs-shaderfilter
obs-source-record
obs-livesplit-one
looking-glass-obs
obs-vintage-filter
obs-command-source
obs-move-transition
obs-backgroundremoval
# advanced-scene-switcher
obs-pipewire-audio-capture
obs-vaapi
obs-3d-effect
];
};
};
}