From 0ecedcf56e310456d87073cdb16b4c6a2f2f7576 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Sat, 12 Jul 2025 20:45:15 +0100 Subject: [PATCH] actual: Use package from unstable --- services/actual.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/actual.nix b/services/actual.nix index 3a006ea..36a2d33 100644 --- a/services/actual.nix +++ b/services/actual.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, inputs, ... }: let inherit (lib) mkIf mkOption mkEnableOption types; @@ -28,6 +28,10 @@ in services.actual = { enable = true; + # nixos 25.05 is on actual-server 25.6.1 which contains an annoying bug + # nixpkgs maintainers declined to backport a newer version, so get this from unstable for now + # ref. https://github.com/NixOS/nixpkgs/issues/423541 + package = (import inputs.nixpkgs-unstable-small { system = "x86_64-linux"; }).actual-server; settings.port = 5006; }; };