Add kitty, obs, and scripts skeleton code

Also refactors some flake.nix code to not use dictionaries
This commit is contained in:
JuliaLange 2024-04-08 23:19:54 -07:00 committed by Julia Lange
parent c9cd42eaa3
commit c97d94408e
7 changed files with 111 additions and 121 deletions

11
programs/obs/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
];
};
}