From b6f18de9e279ebc1da99cfe8ee33b221b0ab76b4 Mon Sep 17 00:00:00 2001 From: Jakub Dorfman Date: Thu, 14 May 2026 21:40:56 +0200 Subject: [PATCH] revert to ada9be7 --- flake.nix | 2 +- reticulum.nix | 21 +-------------------- 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/flake.nix b/flake.nix index 9409981..0003122 100644 --- a/flake.nix +++ b/flake.nix @@ -39,7 +39,7 @@ { nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ "rns" "lxmf" ]; + builtins.elem (lib.getName pkg) [ "rns" ]; } ./reticulum.nix ]; diff --git a/reticulum.nix b/reticulum.nix index 392af17..8fdba71 100644 --- a/reticulum.nix +++ b/reticulum.nix @@ -1,10 +1,7 @@ { config, pkgs, lib, ... }: { - environment.systemPackages = [ - pkgs.python314Packages.rns - pkgs.python314Packages.lxmf - ]; + environment.systemPackages = [ pkgs.python3Packages.rns ]; environment.etc."reticulum-config".text = '' [reticulum] @@ -52,21 +49,5 @@ }; }; - systemd.services.lxmd = { - description = "LXMF Propagation Node daemon"; - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" "rnsd.service" ]; - requires = [ "rnsd.service" ]; - serviceConfig = { - Type = "simple"; - User = "reticulum"; - ExecStart = "${pkgs.python3Packages.lxmf}/bin/lxmd -p"; - Restart = "on-failure"; - RestartSec = "5s"; - Environment = "HOME=/var/lib/reticulum"; - StateDirectory = "reticulum"; - }; - }; - networking.firewall.allowedTCPPorts = [ 25515 ]; } \ No newline at end of file