From f8c091baaf5388031d659b3b51614967cba082cd Mon Sep 17 00:00:00 2001 From: zackartz Date: Sun, 21 Apr 2024 16:58:08 -0400 Subject: [PATCH] 445 current 2024-04-21 16:58:06 24.05.20240421.a8a8401 6.8.6-zen1 * --- modules/home-manager/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 67671b0..78babff 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -2,6 +2,7 @@ config, pkgs, inputs, + lib, ... }: { imports = [ @@ -183,6 +184,20 @@ }; }; + systemd.user.services.xwaylandvideobridge = { + Unit = { + Description = "Tool to make it easy to stream wayland windows and screens to exisiting applications running under Xwayland"; + }; + Service = { + Type = "simple"; + ExecStart = lib.getExe pkgs.xwaylandvideobridge; + Restart = "on-failure"; + }; + Install = { + wantedBy = ["default.target"]; + }; + }; + # programs.nixvim = ./vim.nix; # Let Home Manager install and manage itself.