From bd8da03c67c9861e5bab32d19cac2362ee40e580 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Sun, 17 Dec 2023 21:23:44 -0500 Subject: [PATCH] Adjust tailscale settings, enable fwupd --- modules/hosts/nixos/nixnuc/default.nix | 7 +++++++ modules/hosts/nixos/rainbow-planet/default.nix | 2 ++ 2 files changed, 9 insertions(+) diff --git a/modules/hosts/nixos/nixnuc/default.nix b/modules/hosts/nixos/nixnuc/default.nix index c2c63d2..d8754c2 100644 --- a/modules/hosts/nixos/nixnuc/default.nix +++ b/modules/hosts/nixos/nixnuc/default.nix @@ -73,6 +73,13 @@ openFirewall = true; }; openssh.enable = true; + tailscale = { + extraUpFlags = [ + "--advertise-exit-node" + "--operator ${username}" + "--ssh" + ]; + }; }; users.users.${username} = { diff --git a/modules/hosts/nixos/rainbow-planet/default.nix b/modules/hosts/nixos/rainbow-planet/default.nix index c6f4401..1e05786 100644 --- a/modules/hosts/nixos/rainbow-planet/default.nix +++ b/modules/hosts/nixos/rainbow-planet/default.nix @@ -57,11 +57,13 @@ services = { boinc.enable = true; + fwupd.enable = true; gnome.gnome-keyring.enable = true; # Provides secret storage gvfs.enable = true; # Used by Nautilus printing.enable = true; # Enable CUPS tailscale = { extraUpFlags = [ + "--operator ${username}" "--ssh" ]; };