update and connectivity

This commit is contained in:
Till 2026-01-13 22:03:03 +01:00
parent a08e858ddc
commit a2608f23fe
8 changed files with 65 additions and 22 deletions

29
system/cast.nix Normal file
View file

@ -0,0 +1,29 @@
{ config, pkgs, ... }:
{
networking.firewall = {
allowedTCPPorts = [
7326
8008
8009
8443
];
};
environment.systemPackages = with pkgs; [
gnome-network-displays
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
gst_all_1.gst-vaapi
];
environment.variables = {
GST_PLUGIN_PATH = "/run/current-system/sw/lib/gstreamer-1.0/";
};
}