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 = "pi"; 7 8 # Pi 4 specific settings 9 pi = { 10 streamName = "picam"; 11 resolution = { width = 1920; height = 1080; }; 12 framerate = 30; 13 deviceTreeFilter = "bcm2711-rpi-4*.dtb"; 14 deviceTreeCompatible = "brcm,bcm2711"; 15 gpuMem = 256; 16 }; 17 18 system.stateVersion = "24.11"; 19}