14 lines
231 B
Nix
14 lines
231 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
services.snapserver = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
streams = {
|
||
|
pipewire = {
|
||
|
type = "pipe";
|
||
|
location = "/run/snapserver/snapfifo";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|