✨ add uxplay config
This commit is contained in:
parent
a6ea5773f8
commit
8ce8b0ee8a
2 changed files with 19 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
|
./uxplay.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
|
||||||
18
nixos/uxplay.nix
Normal file
18
nixos/uxplay.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# 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 = {
|
||||||
|
nssmdns = true;
|
||||||
|
enable = true;
|
||||||
|
publish = {
|
||||||
|
enable = true;
|
||||||
|
userServices = true;
|
||||||
|
domain = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue