feat: stop using nixpkgs-wayland

This commit is contained in:
matt1432 2025-04-01 08:25:42 -04:00
parent 6a4f471824
commit dc89c399c0
10 changed files with 8 additions and 80 deletions
modules/desktop/environment/home

View file

@ -4,7 +4,7 @@
pkgs,
...
}: let
inherit (lib) mkIf;
inherit (lib) attrValues mkIf;
cfg = osConfig.roles.desktop;
in {
@ -12,10 +12,13 @@ in {
programs = {
obs-studio = {
enable = true;
plugins = [
pkgs.waylandPkgs.obs-wlrobs
pkgs.obs-studio-plugins.droidcam-obs
];
plugins = attrValues {
inherit
(pkgs.obs-studio-plugins)
droidcam-obs
wlrobs
;
};
};
};
};