From 69e07dbc14464d31e68c5b9b388f8421e4141ad5 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Mon, 30 Mar 2026 18:01:23 +0200 Subject: [PATCH] chore: remove unused uxplay.nix :fire: AirPlay config is inline in sunken-ship.nix; this file was never imported. --- nixos/uxplay.nix | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 nixos/uxplay.nix diff --git a/nixos/uxplay.nix b/nixos/uxplay.nix deleted file mode 100644 index 3ae199f..0000000 --- a/nixos/uxplay.nix +++ /dev/null @@ -1,17 +0,0 @@ -# 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; - }; - }; -}