greeter config

This commit is contained in:
2026-01-10 18:21:38 +09:00
parent 69aefb5297
commit 0762ccc9bc
6 changed files with 43 additions and 11 deletions
+1
View File
@@ -15,6 +15,7 @@
fishPlugins.z
bc
jq
tree
socat
acpi
btrfs-progs
+3 -2
View File
@@ -1,10 +1,11 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
config.boot.kernelPackages.v4l2loopback
v4l-utils
ffmpeg
];
boot.extraModprobeConfig = ''
options v4l2loopback devices=2 video_nr=0,1 card_label="Scrcpy Source,OBS VirtualCamera" exclusive_caps=1
options v4l2loopback devices=2 video_nr=0,1 card_label="OBS Virtual Camera,Scrcpy Source" exclusive_caps=1
'';
}