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