refactor: split up some packages and unify into hyprland module

This commit is contained in:
matt1432 2023-12-04 10:05:25 -05:00
parent 8c7a36554e
commit 378533c2d3
8 changed files with 106 additions and 169 deletions

12
home/obs.nix Normal file
View file

@ -0,0 +1,12 @@
{nixpkgs-wayland, ...}: let
waypkgs = nixpkgs-wayland.packages.x86_64-linux;
in {
programs = {
obs-studio = {
enable = true;
plugins = with waypkgs; [
obs-wlrobs
];
};
};
}