445 current 2024-04-21 16:58:06 24.05.20240421.a8a8401 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-04-21 16:58:08 -04:00
parent 6b1cbe7495
commit f8c091baaf
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -2,6 +2,7 @@
config, config,
pkgs, pkgs,
inputs, inputs,
lib,
... ...
}: { }: {
imports = [ 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; # programs.nixvim = ./vim.nix;
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.