me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

1{ pkgs, lib, config, ... }: 2 3{ 4 imports = [ ../pi-common ]; 5 6 networking.hostName = "pizero"; 7 8 # Pi Zero 2 W specific settings (512MB RAM, BCM2837 SoC) 9 pi = { 10 streamName = "pizerocam"; 11 resolution = { width = 1280; height = 720; }; 12 framerate = 15; 13 deviceTreeFilter = "bcm2837-rpi-zero-2-w.dtb"; 14 deviceTreeCompatible = "brcm,bcm2837"; 15 gpuMem = 128; 16 }; 17 18 system.stateVersion = "24.11"; 19}