fix: Undirty flake build and comment out rustdesk

This commit is contained in:
matthew.binning 2026-02-13 09:51:39 -08:00
parent 0a9981870d
commit 5aa1d4192f
2 changed files with 3 additions and 19 deletions

View file

@ -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
];

View file

@ -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
];
}