actual: Use package from unstable

This commit is contained in:
Katherina Walshe-Grey 2025-07-12 20:45:15 +01:00
parent 873adbaaec
commit 0ecedcf56e

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, inputs, ... }:
let let
inherit (lib) mkIf mkOption mkEnableOption types; inherit (lib) mkIf mkOption mkEnableOption types;
@ -28,6 +28,10 @@ in
services.actual = { services.actual = {
enable = true; 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; settings.port = 5006;
}; };
}; };