Install Tailscale on boot media.

This commit is contained in:
Nolan Darilek 2025-07-21 10:43:49 -04:00
parent 0c93d3010d
commit 0cd60d8d1b

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
imports = [
@ -14,7 +14,6 @@
boot.kernelParams = [ "console=ttyS0,115200" ];
# System-wide Pipewire for Espeakup
sound.enable = true;
services.pipewire = {
enable = true;
systemWide = true;
@ -34,4 +33,6 @@
# Not sure if this does anything, but may make the system easier to find on
# the network
services.avahi.enable = true;
services.tailscale.enable = true;
}