dotfiles/nixos/uxplay.nix
2025-02-07 19:07:15 +01:00

17 lines
374 B
Nix

# article / guide:
# https://taoa.io/posts/Setting-up-ipad-screen-mirroring-on-nixos
# https://gist.github.com/cmrfrd/fe8f61da076f8a4a751bf8fc8cb579a5
# also see: 24_nix_uxplay for script
{ config, pkgs, ... }:
{
services.avahi = {
nssmdns4 = true;
enable = true;
publish = {
enable = true;
userServices = true;
domain = true;
};
};
}