Skip to content
Snippets Groups Projects
Select Git revision
  • 3064a265508f715155d0369168568e1fdd9325eb
  • master default
  • arch
3 results

cpu-intel.nix

Blame
  • streaming.nix 425 B
    { pkgs, config, ... }:
    {
      imports = [
        ./desktop.nix
      ];
    
      boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
      # modprobe v4l2loopback video_nr=42 card_label="IP Webcam"
      # ffmpeg -i http://10.0.2.5:8080/video -vf format=yuv420p -f v4l2 /dev/video1
    
      environment.systemPackages = with pkgs; [
        (wrapOBS {
          plugins = with obs-studio-plugins; [
            wlrobs
          ];
        })
      ];
    }