From 5aa1d4192fe3e2f6640352fed468c6460b5a15a2 Mon Sep 17 00:00:00 2001 From: "matthew.binning" Date: Fri, 13 Feb 2026 09:51:39 -0800 Subject: [PATCH] fix: Undirty flake build and comment out rustdesk --- hosts/crossbox/default.nix | 2 +- hosts/crossbox/rustdesk.nix | 20 ++------------------ 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/hosts/crossbox/default.nix b/hosts/crossbox/default.nix index 80ef65d..0dd69b4 100644 --- a/hosts/crossbox/default.nix +++ b/hosts/crossbox/default.nix @@ -15,7 +15,7 @@ in ./forgejo.nix ./radicale.nix ./ollama.nix - ./rustdesk.nix + #./rustdesk.nix # ./llama-server.nix # disabled: source build broken (LLVM 22 vs 19 mismatch in strix-halo overlay) # ./docuseal.nix ]; diff --git a/hosts/crossbox/rustdesk.nix b/hosts/crossbox/rustdesk.nix index 8522369..0e03483 100644 --- a/hosts/crossbox/rustdesk.nix +++ b/hosts/crossbox/rustdesk.nix @@ -1,24 +1,8 @@ { config, pkgs, lib, ... }: { - services.rustdesk = { + services.rustdesk-server = { enable = true; - server = { - port = 16484; - # Optional: Set a password for the server - # password = "your-password"; - }; - client = { - # Optional: Set a password for the client - # password = "your-password"; - }; + openFirewall = true; }; - - # Open firewall port for RustDesk - networking.firewall.allowedTCPPorts = [ 16484 ]; - - # Install RustDesk - environment.systemPackages = with pkgs; [ - rustdesk - ]; } \ No newline at end of file