From 204034fac265c793dc34314961718a1392672494 Mon Sep 17 00:00:00 2001 From: cy Date: Mon, 9 Dec 2024 01:12:35 -0500 Subject: [PATCH] make obs work and use correct spilit keys in tmux --- nix/configuration.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index e06156a..35f3bb0 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -139,13 +139,13 @@ unzip obsidian lm_sensors - obs-studio activitywatch aw-watcher-window-wayland aw-qt aw-watcher-afk sshfs nextcloud-client + python312Packages.python-lsp-server (callPackage ./anki-bin.nix {}) ]; @@ -353,4 +353,19 @@ }; nix.settings.auto-optimise-store = true; + + programs.obs-studio = { + enable = true; + plugins = with pkgs.obs-studio-plugins; [ + wlrobs + ]; + }; + + hardware.graphics = { + enable = true; + extraPackages = with pkgs; [ + intel-media-driver + intel-media-sdk + ]; + }; }