NixOS-Config/home-manager/hosts/GLaDOS/default.nix

22 lines
326 B
Nix
Raw Normal View History

2024-02-07 13:50:03 +01:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
./lillian.nix
];
2024-02-16 12:21:34 +01:00
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
];
};
2024-02-07 13:50:03 +01:00
}