mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
13 lines
309 B
Nix
13 lines
309 B
Nix
{gensokyo-zone, ...}: let
|
|
inherit (gensokyo-zone.lib) mapDefaults;
|
|
in {
|
|
services.motion.cameras.webcam.settings = mapDefaults {
|
|
video_device = "/dev/video0";
|
|
video_params = "palette=15";
|
|
width = 1280;
|
|
height = 720;
|
|
camera_id = 3;
|
|
framerate = 3;
|
|
text_left = "logistics";
|
|
};
|
|
}
|